async-rediscache
async-rediscache copied to clipboard
Add key and values methods to RedisCache
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.