You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I want id fields (primary keys) to represent some hierarchy n order to be easily identifieable from the first glance.
For that I'd like to use the same : separator that is used for namespacing:
I have the following setup (minimized for simplicity):
And I want
id
fields (primary keys) to represent some hierarchy n order to be easily identifieable from the first glance.For that I'd like to use the same
:
separator that is used for namespacing:So that the actual Redis keys look like that:
This setup works for most actions.
For example, I can easily get the city like that:
But it does not work for
.all_pks()
.Expected behaviour:
Actual behaviour:
This behaviour is caused by this patch of code:
redis-om-python/aredis_om/model/model.py
Lines 1530 to 1535 in 721f734
Upon finding the key, it splits the key by
:
and takes the last part of it. Soplaces:city:ca:qc:montreal
becomesmontreal
.While it should just remove the
key_prefix
part. So thatplaces:city:ca:qc:montreal
becomesca:qc:montreal
.The text was updated successfully, but these errors were encountered: