emilhe / dash-extensions

The dash-extensions package is a collection of utility functions, syntax extensions, and Dash components that aim to improve the Dash development experience
https://www.dash-extensions.com/
MIT License
409 stars 57 forks source link

Serverside how to use memory as backend #303

Closed Liripo closed 6 months ago

Liripo commented 6 months ago

Hello: I haven't found any examples of using memory as the Serverside backend instead of using disk cache. Are there any examples? Thanks.

emilhe commented 6 months ago

A class is not included for in-memory storage (as you would typically run out of memory too quickly). However, you should be able to make one with a few lines of code, if you want, by following the instructions from the docs,

https://www.dash-extensions.com/transforms/serverside_output_transform#a-backends

Liripo commented 6 months ago

Thanks.