Key value caching machanism with backends: disk, Sqlite, Redis, MySQL, PostgreSQL.
Project description
jmstorage
Thread safe key:value storage with multiple back-end options.
Install
pip install jmstorage
Storage Options
- disk(local file system)
- Currently, this is the only supported option.
- This is thread safe as the library acquires a thread lock during write operations.
- Redis
- In Development, will update as it becomes available.
- Sqlite
- In Development, will update as it becomes available.
- MySQL
- In Development, will update as it becomes available.
- PostgreSQL
- In Development, will update as it becomes available.
How to Use
from jmstorage import Cache
c = Cache(namespace="namespace-value", path="./path_to_local_disk_file/")
# Set Value
c.set("my_key", "my_value")
# Read Value
my_val = c.get("my_key")
# > "my_value"
# Pop Value
my_val = c.pop("my_key")
# > "my_value"
c.get("my_key")
# > None
# Delete Value
c.delete("my_key")
c.get("my_key")
# > None
# Truncate Storage
c.truncate()
c.get("my_key")
# > 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.
Source Distribution
jmstorage-0.0.1.tar.gz
(6.7 kB
view hashes)
Built Distribution
Close
Hashes for jmstorage-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 451a683ce5826d695b77806b11f61969b7c8d8a2dd663392cf9f025f37c365f7 |
|
MD5 | 3968f6605834a0ea5b6956628b42bf6e |
|
BLAKE2b-256 | 503ce88cec0210203fb56804b1489f848c24f686478326bdca68f44294cb91a7 |