Andrei Beliak
Andrei Beliak
This thing can be useful I think so too
Hi! Thank you for the issue. I am experiencing the same problem and it would be nice to have it solved.
I've built pyzmq on armv7l but I also see that error. Could it be that pyzmq cython/c code isn't compatible with that architecture?
Finally, in my project, I've used an overloaded db method, like this: models.py: ``` import aredis_om class MyBaseModel(aredis_om.JsonModel): @classmethod def db(cls): return aredis_om.get_redis_connection() class SampleModel(MyBaseModel): field: str = aredis_om.Field(index=True) class...
> You can add the Meta class to change the connection parameters without needed a BaseClass > > ``` > from aredis_om import ( > Field, > HashModel, > JsonModel,...
It seems that the problem you described causes this issue: https://github.com/redis/redis-om-python/issues/527 And in the case described in the issue, I was able to overwrite the database using `MyModel._meta.database = `