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
TinyDB comes with two storage types: JSON and in-memory. The current default used by pancloud is JSON. There are some use-cases that could benefit from in-memory mode, such as the use-case where only access_token needs to be stored/cached in the pancloud credentials store. However, the current TinyDBStore class implementation does not provide a way to pass the storage param, i.e. storage=MemoryStorage.
Proposed solution
Add support for storage param to TinyDBStore using storage_params to pass the argument.
The text was updated successfully, but these errors were encountered:
Description
TinyDB
comes with two storage types: JSON and in-memory. The current default used bypancloud
is JSON. There are some use-cases that could benefit fromin-memory
mode, such as the use-case where onlyaccess_token
needs to be stored/cached in thepancloud
credentials store. However, the currentTinyDBStore
class implementation does not provide a way to pass thestorage
param, i.e.storage=MemoryStorage
.Proposed solution
Add support for
storage
param toTinyDBStore
usingstorage_params
to pass the argument.The text was updated successfully, but these errors were encountered: