redis-om-python icon indicating copy to clipboard operation
redis-om-python copied to clipboard

Object mapping, and more, for Redis and Python

Results 196 redis-om-python issues
Sort by recently updated
recently updated
newest added

Please add the ability to mark class members of EmbeddedJsonModel as indexed when the EmbeddedJsonModel is in a List in the JsonModel.

Cannot connect redis_om with django, was able to successfully connect redis-py with django using: `redis.StrictRedis(host='127.0.0.1', port=6379, db=0)` but when tried to connect the redis-om-model with django and fetched the existing...

Setting the expiration time in the Meta object is better than calling `expire` on the instance.

Related to #261 & #254 The query is working, the only issue is that the `await model.save()` call returns the values stored in Redis, i also need to apply this...

Related to #251 Only 2 tests cases failed: ```sh =========================== short test summary info ============================ FAILED tests/test_hash_model.py::test_exact_match_queries - TypeError: argume... FAILED tests_sync/test_hash_model.py::test_exact_match_queries - TypeError: a... ======================== 2 failed, 140 passed...

Bumps [pydantic](https://github.com/samuelcolvin/pydantic) from 1.9.1 to 1.9.2. Release notes Sourced from pydantic's releases. v1.9.2 (2022-08-11) Revert Breaking Change: v1.9.1 introduced a breaking change where model fields were deep copied by default,...

``` from redis_om import Field, HashModel, Migrator from pydantic import PositiveInt, ValidationError from typing import Optional class RatingBody(HashModel): id: PositiveInt = Field(index=True) name: str country: str language: str code: str...

Related to #283 Implemented as described [here](https://github.com/RediSearch/redisearch-getting-started/blob/master/docs/007-query-movies.md#count). I think I forget to implement the second one with `FILTER`. It seems like we don't have to pass `FILTER` in args cause...

breakingchange

`save` and `find` are now `async` functions on the main branch, and not the release version. So, we should provide a FastApi app kinda examples before releasing a new version....

documentation