Hi, I want to have a function that its input is prefix for value of bitmap and it returns all key with this pattern in its value(bit). For example: BITMATCH [flags - bitmap as string] bitmatch "\x01\x00\xff"
Can anyone help me?
Comment From: oranagra
do you mean to return a list of keys, with specific pattern in their values? without any indexing, that's an aggressive search, redis doesn't do that. maybe you can implement a Lua script that adds a filter on SCAN results and call it incrementally.