I need to get a list of all streams (keys) in a database but I can't find a command for it.
I've already tried going over all keys and checking their typebut it is too slow/expensive.
I'd like to do something like XSCAN
and get a list of keys like: ["stream1", "stream2"]
XSCAN
but there are methods "get a list of other data structures" SortedSet Set Hash. I would rather have an XSCAN so I don't have to keep a list myself. – Absorber