async-rediscache icon indicating copy to clipboard operation
async-rediscache copied to clipboard

Add key and values methods to RedisCache

Open Numerlor opened this issue 3 years ago • 0 comments

Currently the cache only allows fetching of both the keys and their values at the same time through the items method, if the user only wants either of them they need to fetch and throw away the unnecessary values,

Redis has the HVALS and HKEYS commands which can be used to fetch only the values and only the keys respectively that can be used to implement these methods.

Numerlor avatar May 17 '21 20:05 Numerlor