I have just started with Redis. My DB contains about 1 billion records. Using HKEYS *
results in an out of memory error.
Is there a way to iterate through keys? Something like HKEYS *
but with a limit n?
Edit:
I am now using a loop which matches a pattern
for c in '1234567890abcedf':
r.keys(c + '*')