Wrapper for hash map based storage systems
Project description
![Smart Hashmap](https://raw.github.com/yurzs/smart_hashmap/master/assets/hashmap-logo.svg)
Wrapper for key-value based storage systems. Provides convenient way to organize data for quick searching.
Installation
1. Using pip: pip install smart_hashmap
2. Building from source: make install
How to use
Firstly you need to register methods:
from smart_hashmap.cache import Cache
Cache.register_get_method(YOUR_GET_METHOD)
Cache.register_set_method(YOUR_SET_METHOD)
Cache.register_update_method(YOUR_UPDATE_METHOD)
Cache.register_delete_method(YOUR_DELETE_METHOD)
NOTE: Methods signature MUST match their placeholders signature
GET_METHOD = lambda cache, name, key, default=None: None # noqa: E731
SET_METHOD = lambda cache, name, key, value: None # noqa: E731
UPDATE_METHOD = lambda cache, name, key, value: None # noqa: E731
DELETE_METHOD = lambda cache, name, key: None # noqa: E731
"""METHODS placeholders. You should register yours."""
Now you are all set up to use Cache.search
How it works
In default setup Cache creates and maintains indexes based on Cache.primary_key. So every object save in cache MUST have such key. (By default its _id)
On every called action for example Cache.update Cache looks in pipeline Cache.PIPELINE.update for middlewares to run before and after main function execution. For example in current situation after .update function execution indexing middleware will check if documents fields matching its keys were changed. If so it will get index data, look for old values in value.__shadow_copy__ remove such index data and create new record with updated values.
Adding middlewares
Adding new action is easy:
from smart_hashmap.cache import Cache, PipelineContext
@Cache.PIPELINE.set.before()
def add_my_field(ctx: PipelineContext):
key, value = ctx.args
value["my_field"] = 1
Now every cache value saved with Cache.set will be added ‘my_field’ before main function execution.
Custom Indexes
To create custom index you need to simply create new subclass of Index.
from smart_hashmap.index import Index
class IndexByModel(Index):
keys = ["_id", "model"]
NOTE: After that all values MUST have fields _id AND model NOTE: Primary key MUST ALWAYS be in keys
Searching
After all required indexes created - searching will be as quick as possible.
from smart_hashmap.cache import Cache
from smart_hashmap.index import Index
class IndexByModel(Index):
keys = ["_id", "model"]
cache = Cache()
cache.search("my_cache", {"model": "1.0"})
When .search is called it will firstly check for indexes containing search fields. After finding best index, it will get index data and find matching primary keys. Now searching is as easy as getting values by their key.
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
Hashes for smart_hashmap-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c207c5d09059db808eec8cee95d65cf8c58cd6c37209902c87add3edb8584f41 |
|
MD5 | d88fd58daa6698368c47bbc2b27521b9 |
|
BLAKE2b-256 | 6a886d9c925efeb87864f09deb2e01d34c349421c2a6d7930b43369fbcb82b7f |