Srikanth

Results 16 issues of Srikanth

### Expected Behavior I want to be able to connect to GraphQL subscriptions via insomnia. ### Actual Behavior I get 403 Forbidden errors ### Reproduction Steps _No response_ ### Is...

B-bug
S-unverified

Adding this as a todo. I have already made a bash script for you. ```bash #!/bin/bash # Check if a directory argument is provided if [ "$#" -ne 3 ];...

A few people tried to sign up to my website using this. It has valid MX records. But no actual accounts. If you are adding domains please state where one...

Server side ping messages are necessary to keep the websocket connection open on all types of platforms. The particular platform I'm working with is react-native on Android ## Describe the...

bug

Currently we are able to set an expiry after saving the model. ``` class Like(HashModel): user_id: str liked_user_id: str @root_validator() def assign_pk(cls, values): values["pk"] = f"{values['user_id']}:{values['liked_user_id']}" return values class Meta:...

Pydantic is great. It would also be nice to support msgspec which is a low effort JSON parser and validator.

![image](https://github.com/redis/redis-om-python/assets/5894493/07352fff-3374-4144-bc15-d403e66a78bb) Pydantic v2 comes with several performance and safety benefits due to being compiled in Rust with python bindings. I'd love to see the models: HashModel, JsonModel, EmbeddedJsonModel all use...

Hi Everyone, I've been trying out redis-om and I like the simplicity it offers. Thank you for taking the time to write it. I have run into an issue though....

Currently there is implementation details for saving | deleting multiple records at once using redis pipelines. Example: ``` @py_test_mark_asyncio async def test_delete_many(m): member1 = m.Member( id=0, first_name="Andrew", last_name="Brookins", email="[email protected]", join_date=today,...

enhancement

The current working of string matching returns an error for ```search_term=""``` ```Person.find(Person.personal_statement % search_term).all()``` > "message": "Syntax error at offset 140 near personal_statement_fts", This behaviour should be enhanced to allow...