Reputation: 24618
I've two different types of keys saved, one prefixed with response
, and another uuid
. I want to count the number of keys that start with uuid
. According to this answer, it's possible to filter keys using MATCH
but is it possible to get a count?
Upvotes: 0
Views: 1389
Reputation: 1159
There's no operation in Redis to get a count given a particular prefix. Here are a couple of ideas for you:
Upvotes: 2