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

Object mapping, and more, for Redis and Python

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

Implement a dry run mode for the migrator that logs what it would do but doesn't do it. See TODO notes in the code.

enhancement

Hello, enum with str works but enum with int does not work

Right not `:` is used for the key namespace separator. While this is the right answer most of the time, there are several places in the code marked with a...

enhancement

Implement a NOT IN query / test the code that may already be there for this.

enhancement

Implement GEO query in Hash model and JSON as supported.

enhancement

Hello, Sometimes an object is huge and only want to return from Redis subset of the data https://oss.redis.com/redisjson/indexing_JSON/#field-projection

Hello, In JsonModel, find not working with timedelta, whereas HashModel is working Check out below code: ```python class Customer(JsonModel): name: str = Field(title="Name", index=True) class RestaurantVisit1(JsonModel): customer_pk: str = Field(index=True)...

'this Preview release, list and tuple fields can only contain strings. Problem field: . See docs: TODO'

Hello, In JsonModel, find not working with class that has Optional and no default value, whereas HashModel is working Check out below code: ```python class CustomerHash1(HashModel): name: str = Field(index=True)...

I've created a basic model and set an int field to be `StrictInt`... this saves to Redis fine, but fails on retrieval... I imagine because this is really stored as...