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

Bumps [mypy](https://github.com/python/mypy) from 0.971 to 0.982. Commits 1c2b899 Bump version to 0.982 51d9858 Restore Type vs Callable special-casing that was broken in refactoring (#13784) d03f201 Suggest using upper bound for...

Code to reproduce the issue: ```python from typing import Optional, Any from fastapi import FastAPI from pydantic import BaseModel, Field as PydanticField, EmailStr import datetime from aredis_om import ( Field,...

Hey everyone, I am trying to store and fetch in a model whose field's type is boolean. However, as you may know, Redis will complain about that when trying to...

Hi, I am using `JsonModel`. I apologize for posting this noob question here. I am really stuck. `cust = Customer.find(Customer.plan == "plan1").all()` return only 10k. How do i get the...

We should better document the use of `model_key_prefix`, see #121

documentation

It's possible to sort results in ASCending or DESCending order like this... ASCending: ```python result_set = Book.find( (Book.author == "Robert A. Heinlein") & (Book.year_published > 1958) & (Book.year_published < 1974)...

documentation

Storing works, but querying doesn't work. Take the following as an example: ```python from typing import Optional, Any from fastapi import FastAPI from pydantic import BaseModel, Field as PydanticField, EmailStr...

Seeking clarification on the current status of the redis-om-python project. Is this project still actively maintained, or can it be considered a dead project? There hasn't been a release in...