Master-Slave connection to Mongo.
Performs all writes to Master instance and distributes reads among all instances.
Create a new Master-Slave connection.
The resultant connection should be interacted with using the same mechanisms as a regular Connection. The Connection instances used to create this MasterSlaveConnection can themselves make use of connection pooling, etc. ‘Connection’ instances used as slaves should be created with the slave_okay option set to True.
Raises TypeError if master is not an instance of Connection or slaves is not a list of at least one Connection instances.
| Parameters: |
|
|---|
Close a single database cursor.
Raises TypeError if cursor_id is not an instance of (int, long). What closing the cursor actually means depends on this connection’s cursor manager.
| Parameters: |
|
|---|
Drop a database.
| Parameters: |
|
|---|
End the current “request”.
See documentation for Connection.end_request.
Set the cursor manager for this connection.
Helper to set cursor manager for each individual Connection instance that make up this MasterSlaveConnection.
Is it okay for this connection to connect directly to a slave?
This is always True for MasterSlaveConnection instances.
Start a “request”.
Start a sequence of operations in which order matters. Note that all operations performed within a request will be sent using the Master connection.