Oren Keinan (Twigo)

Results 5 issues of Oren Keinan (Twigo)

I have two use cases in which I would like to replace the default pk field with another field: 1. I would like to define that a string field named...

What is the recommended way to mimic HSETNX command? (https://redis.io/commands/hsetnx/) The question refers to both Json and Hash models. my use case: I have a key with "created_timestamp" field. I...

enhancement

We miss the support of defining a JsonModel with a field that is defined as a List of EmbeddedJsonModel . It is highly required to support our DB modeling to...

enhancement

The getting_started.md requires some fixes: 1. In the example of: from redis_om import get_redis_connection redis_conn = get_redis_conection() Should be updated to: from redis_om import connections redis_conn = connections.get_redis_connection() This fix...

documentation

for example: tags: List[str] = Field(min_length=1) error: "In this Preview release, list and tuple fields can only contain strings. Problem field: tags. See docs: TODO" note: tags: List[str] = Field(index=True)...

enhancement