Reputation: 13091
I am using Redis 5.x
Is it possible to query based on Values (not Keys)?
(e.g. perform filtering)
Upvotes: 2
Views: 1896
Reputation: 49932
No - Redis does not perform searches based on values. For that you'll need to index the data yourself as described in https://redis.io/topics/indexes or use something like RediSearch.
Upvotes: 3