You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although I wouldn't recommend this as a heavily-used operation, it does make sense to have a way to iterate the cache (similar to Redis' SCAN command family).
It'd be neat if there were a function of Cachex.stream(cache, options) which can be used to iterate a cache in such fashion:
:my_cache|>Cachex.stream!|>Enum.to_list
This would allow various filtering and whatnot, in order to allow people to filter out cache values and operate on them appropriately. For example if you wanted to delete all keys beginning with a:
Although I wouldn't recommend this as a heavily-used operation, it does make sense to have a way to iterate the cache (similar to Redis'
SCAN
command family).It'd be neat if there were a function of
Cachex.stream(cache, options)
which can be used to iterate a cache in such fashion:This would allow various filtering and whatnot, in order to allow people to filter out cache values and operate on them appropriately. For example if you wanted to delete all keys beginning with
a
:The text was updated successfully, but these errors were encountered: