redis-om-python with updated dependencies
Find a file
2021-09-01 13:13:46 -07:00
redis_developer Basic hash and JSON models 2021-09-01 12:56:06 -07:00
tests Remove reference to hashes in JSON example 2021-09-01 13:13:46 -07:00
.gitignore WIP on basic non-relational model functionality 2021-08-30 18:08:07 -07:00
poetry.lock Fix pk key 2021-08-31 15:52:21 -07:00
pyproject.toml Fix pk key 2021-08-31 15:52:21 -07:00
README.md Tweaks to README copy 2021-08-31 16:37:49 -07:00

Redis Developer Python

redis-developer-python is a high-level library containing useful Redis abstractions, like an ORM, rate limiter, and leaderboard.

ORM

redis-developer-python includes an Object Redis Mapper.

Declarative model classes

Serialization and validation based on model classes

Save a model instance to Redis

Get a single model instance from Redis

Update a model instance in Redis

Batch/bulk insert and updates

Declarative “primary key”

Embedded models (JSON)

Exact-value queries on indexed fields

Declarative index creation and automatic index management (RediSearch)

Ad-hoc numeric range and full-text queries (RediSearch)

Aggregations (RediSearch)