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
to be able to scan keys based on additional attributes:
mask may contain the following attributes:
v - volatile, keys that have ttl
p - permanent, keys that do not have ttl
a - accessed, the key has been accessed since the last load/flush event, or the last time a flag was reset.
u - untouched, the key has not been accessed/touched.
in the future:
d the value resides on disk
m the value resides in memory
for (3), (4) we need to introduce an additional flag in CompactObject to track it on keys (note that usually the flags keys are set on values).
Also we will need a DEBUG ACCESS RESET to reset a attributes for the current database.
Note that we already provide undocumented "BUCKET " filter for SCAN.
The text was updated successfully, but these errors were encountered:
Add another filter to the SCAN command:
ATTR <mask>
to be able to scan keys based on additional attributes:
mask may contain the following attributes:
v
- volatile, keys that have ttlp
- permanent, keys that do not have ttla
- accessed, the key has been accessed since the last load/flush event, or the last timea
flag was reset.u
- untouched, the key has not been accessed/touched.in the future:
d
the value resides on diskm
the value resides in memoryfor (3), (4) we need to introduce an additional flag in CompactObject to track it on keys (note that usually the flags keys are set on values).
Also we will need a
DEBUG ACCESS RESET
to reseta
attributes for the current database.Note that we already provide undocumented "BUCKET " filter for SCAN.
The text was updated successfully, but these errors were encountered: