I am fairly new to redis. Started using redis with ‘:’ separated namespaces to store pickle data.
It’s easier to search for what data is stored using wildcard searches on redis clients(redisinsights for example).
e.g. If data is stored in a hierarchal structure
key=source1:20240506:part1:subtype1:1 value=pickle(dataset1)
key=source1:20240506:part2:subtype2:2 value=pickle(dataset2)
A scan on the client for example source1:202405* shows a list of keys that can be then individually explored.
The question now is, why isn’t wildcard search on key/namespace supported if i use json.set instead ?
Whenever i tried a wildcard scan, no data is shown. However, data is shown if i use an exact key.