Simple and fast Python in-memory caching library
Project description
poche
Simple and fast Python in-memory caching with support for TTLs.
Meant to speed up using dictionaries as cache backend for simple usecases.
No external dependencies, 100% code coverage and static type checked.
Installation
Requires Python 3.6+.
pip install poche
Roadmap
v1:
- <input type="checkbox" checked="" disabled="" /> Basic TTL
- <input type="checkbox" checked="" disabled="" />
get
- <input type="checkbox" checked="" disabled="" />
set
- <input type="checkbox" checked="" disabled="" />
getset
- <input type="checkbox" checked="" disabled="" />
flush
v1.1:
- <input type="checkbox" disabled="" />
expire
- <input type="checkbox" disabled="" />
persist
- <input type="checkbox" disabled="" />
rename
v1.2:
- <input type="checkbox" disabled="" />
getorset
with callback
Example
from time import sleep import poche >>> c = poche.Cache() >>> c.set("one", "uno") >>> c.get("one") "uno" >>> c.get("two") None >>> c.getset("two", "dos") None >>> c.get("two") "dos" >>> c.set("three", "tres", ttl=2) >>> c.get("three") "tres" >>> sleep(2) >>> c.get("three") None >>> c = poche.Cache(ttl=2) # you can also define a default TTL >>> c.set("four", "cuatro") >>> c.get("four") "cuatro" >>> sleep(2) >>> c.get("four") None
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size poche-1.0.0-py3-none-any.whl (16.1 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size poche-1.0.0.tar.gz (15.8 kB) | File type Source | Python version None | Upload date | Hashes View |