Skip to content

Commit 049f82d

Browse files
authored
doc: adding note on AsyncioReactor (#2)
1 parent c63ff9d commit 049f82d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/alternatives-comparison.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ The Python ecosystem offers several approaches to async Cassandra connectivity.
7777
- Replaces default reactor with asyncio-based implementation
7878
- Still uses thread-based architecture internally
7979

80+
**Note on Usage:**
81+
During our evaluation, we encountered difficulties getting AsyncioReactor to establish connections successfully. This could be due to its experimental status, our specific test environment, or missing configuration requirements. Additionally, AsyncioReactor runs its event loop in a separate thread and still uses threads for I/O operations internally, which doesn't provide any performance or architectural advantages over our approach of using a thread pool executor to bridge synchronous operations to asyncio. Given its experimental designation and our connection challenges, we focused our efforts on the stable, production-ready alternatives.
82+
8083
## Technical Comparison
8184

8285
### Architecture Comparison

0 commit comments

Comments
 (0)