Skip to main content

Package acdb manages objects between memory and file system.

Project description

# Package acdb

Package acdb manages objects between memory and file system.

`sh $ pip install acdb `

# Mem

MemDriver cares to store data on memory, this means that MemDriver is fast. Since there is no expiration mechanism, be careful that it might eats up all your memory.

`py db = acdb.mem() db.set('name', 'acdb') assert db.get('name') == 'acdb' `

# Doc

DocDriver use the OS’s file system to manage data. In general, any high frequency operation is not recommended unless you have an enough reason.

`py db = acdb.doc("/tmp/dat") `

# Lru

In computing, cache algorithms (also frequently called cache replacement algorithms or cache replacement policies) are optimizing instructions, or algorithms, that a computer program or a hardware-maintained structure can utilize in order to manage a cache of information stored on the computer.

Caching improves performance by keeping recent or often-used data items in a memory locations that are faster or computationally cheaper to access than normal memory stores. When the cache is full, the algorithm must choose which items to discard to make room for the new ones.

Least recently used (LRU), discards the least recently used items first. It has a fixed size(for limit memory usages) and O(1) time lookup.

`py db = acdb.lru(1024) `

# Syn

MapDriver is based on DocDriver and use LruDriver to provide caching at its interface layer. The size of LruDriver is always 1024.

`py db = acdb.syn("/tmp/dat") `

# Licences

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acdb-3.7.3.tar.gz (2.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page