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
Is your feature request related to a problem? Please describe.
I am trying to store medium-sized binary files (not just serde) alongside the application state. I'd like to put them in the same directory where FileStorage is going to store other application state though.
Describe the solution you'd like
Option 1: Storage could expose a get_path API. This would be easier, though presents complications when running on web.
Is your feature request related to a problem? Please describe.
I am trying to store medium-sized binary files (not just serde) alongside the application state. I'd like to put them in the same directory where
FileStorage
is going to store other application state though.Describe the solution you'd like
Option 1: Storage could expose a
get_path
API. This would be easier, though presents complications when running on web.Option 2: Storage could expose an API like:
on web this probably needs to be backed by IndexedDB or OPFS.
The text was updated successfully, but these errors were encountered: