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
mystic.cache.archive has read and write functions. Similar methods to "remove" a list of entries and to "delete" an archive should be added, as they compliment read and write.
"remove an entry" in a klepto.archive instance "a" should be implemented with values = a.popkeys(keys), however should potentially return a dict of popped key/value pairs.
"delete a backend" for a klepto.archive instance "a" should be implemented with a.archive.__drop__(), and should probably either return None or the contents of the archive.
The text was updated successfully, but these errors were encountered:
mystic.cache.archive
hasread
andwrite
functions. Similar methods to "remove" a list of entries and to "delete" an archive should be added, as they complimentread
andwrite
."remove an entry" in a
klepto.archive
instance "a" should be implemented withvalues = a.popkeys(keys)
, however should potentially return a dict of popped key/value pairs."delete a backend" for a
klepto.archive
instance "a" should be implemented witha.archive.__drop__()
, and should probably either return None or the contents of the archive.The text was updated successfully, but these errors were encountered: