Amin Aminian

Results 7 issues of Amin Aminian

Hi I had a scenario in my project for rolling back a reshaped text to original text I've written this feature, so i'll link it as a pull request Hope...

#74 This feature is about being able to get original text from reshaped one It supports harakat, ligatures and etc

Hi! I am trying to migrate from redis to keydb. I have set up keydb for our staging env for a while, and everything looks fine there. But when I...

Hi! I saw you are implementing hash functions like hset and ... (I think it's not released yet). I was looking for hget in source code and didn't find that...

### Sample 1: ```python # Model class User(SerializableModel, Base): __tablename__ = "user_account" id: Mapped[int] = mapped_column(primary_key=True) name: Mapped[str] = mapped_column(String(30)) ``` API Response: ``` [{"id":1,"name":"a"},{"id":2,"name":"b"}] ``` ### Sample 2: ```python...