pyzor.enginesΒΆ
- pyzor.engines.common
- pyzor.engines.gdbm
GdbmDBHandle
GdbmDBHandle.absolute_source
GdbmDBHandle.apply_method()
GdbmDBHandle.decode_record()
GdbmDBHandle.decode_record_0()
GdbmDBHandle.decode_record_1()
GdbmDBHandle.encode_record()
GdbmDBHandle.fields
GdbmDBHandle.handles_one_step
GdbmDBHandle.items()
GdbmDBHandle.iteritems()
GdbmDBHandle.log
GdbmDBHandle.reorganize_period
GdbmDBHandle.start_reorganizing()
GdbmDBHandle.start_syncing()
GdbmDBHandle.sync_period
GdbmDBHandle.this_version
ThreadedGdbmDBHandle
- pyzor.engines.mysql
MySQLDBHandle
MySQLDBHandle.absolute_source
MySQLDBHandle.get_prefork_connections()
MySQLDBHandle.handles_one_step
MySQLDBHandle.items()
MySQLDBHandle.iteritems()
MySQLDBHandle.log
MySQLDBHandle.reconnect()
MySQLDBHandle.reconnect_period
MySQLDBHandle.reorganize_period
MySQLDBHandle.report()
MySQLDBHandle.start_reorganizing()
MySQLDBHandle.whitelist()
ProcessMySQLDBHandle
ThreadedMySQLDBHandle
- pyzor.engines.redis
Database backends for pyzord.
The database class must expose a dictionary-like interface, allowing access via __getitem__, __setitem__, and __delitem__. The key will be a forty character string, and the value should be an instance of the Record class.
If the database backend cannot store the Record objects natively, then it must transparently take care of translating to/from Record objects in __setitem__ and __getitem__.
The database class should take care of expiring old values at the appropriate interval.