Package for persistent memory
Project description
PersistentMemory Library Documentation
Overview
PersistentMemory is a Python library for managing persistent data with optional encryption. It provides a simple interface for storing and retrieving data, with an added benefit of in-memory caching for improved read performance.
Installation
You can install the library using pip:
pip install PersistentMemory
Usage
Initialization
To use PersistentMemory, first import it and create an instance:
from persistentMemory.PersistentMemory import PersistentDictionary
pd = PersistentDictionary(appName='YourAppName', encryptionKey='YourEncryptionKey')
Storing Data
You can store data using the store_data method:
pd.your_key = your_data
pd.push('your_key', your_data)
Retrieving Data
Retrieve data using the retrieve_data method. This method will first check the in-memory cache before accessing the disk:
data = pd.your_key
data = pd.get('your_key')
Caching
Data read from disk is cached in memory, which speeds up subsequent read operations for the same data.
Features
- Data persistence on the filesystem.
- Data encryption.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file PersistentMemory-0.1.4.tar.gz.
File metadata
- Download URL: PersistentMemory-0.1.4.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73d4ba6025462c87f63f316a527200cc587ad62dece79a7818201ef6ed03701a
|
|
| MD5 |
23efb1e62fa80a671c9a5befa21f2914
|
|
| BLAKE2b-256 |
149320c01c4c6270bc3dcfcd0954c4b7057c999b8eceb78f990d8bb28333e359
|
File details
Details for the file PersistentMemory-0.1.4-py3-none-any.whl.
File metadata
- Download URL: PersistentMemory-0.1.4-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
682a9e6415c9793077d7a9fafa2afb7183c74d0f1f28c4305d9ddd2339be6177
|
|
| MD5 |
e7a6ea1bc7226a813e86822d49a7f54f
|
|
| BLAKE2b-256 |
23e08a7ac8f85edd94b944c55652af9b19efd12b60974bf71f3ac4850b269202
|