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.
It would be pretty cool to have sth like localStorage to store simple key-values in the context of a function. I used this quite often in node-red to store simple states for example used to create singeltons with a timestamp lock.
Describe the solution you'd like
Support for localStorage similar to the browser implementation. The localStorage should use the function as context so only a function can access the data.
Describe alternatives you've considered
I could use an external database / key-value api.
The text was updated successfully, but these errors were encountered:
Something like a KV store is definitely planned for the future. I'm curious about your use case, do you need this to be replicated across all regions, or only stored in a single one?
Is your feature request related to a problem? Please describe.
It would be pretty cool to have sth like
localStorage
to store simple key-values in the context of a function. I used this quite often in node-red to store simple states for example used to create singeltons with a timestamp lock.Describe the solution you'd like
Support for
localStorage
similar to the browser implementation. ThelocalStorage
should use the function as context so only a function can access the data.Describe alternatives you've considered
I could use an external database / key-value api.
The text was updated successfully, but these errors were encountered: