Was this page helpful?
ScyllaDB Python Driver is available under the Apache v2 License. ScyllaDB Python Driver is a fork of DataStax Python Driver. See Copyright here.
Caution
You're viewing documentation for a previous version of Scylla Python Driver. Switch to the latest stable version.
asyncio Event Loop
An implementation of Connection that uses the asyncio
module in the Python standard library for its event loop.
Supports SSL connections via asyncio’s native TLS transport, which
avoids the incompatibility between ssl.SSLSocket and asyncio’s
low-level socket methods (sock_sendall, sock_recv).
TLS session resumption (Cluster.ssl_session_cache) is not
available on this reactor: the handshake happens inside
loop.create_connection(..., ssl=...), which offers no point at which
a cached session could be restored.
Called once by Cluster.connect(). This should be used by implementations to set up any resources that will be shared across connections.
Was this page helpful?
ScyllaDB Python Driver is available under the Apache v2 License. ScyllaDB Python Driver is a fork of DataStax Python Driver. See Copyright here.