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

Home Page:https://www.dash-extensions.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Serverside how to use memory as backend

Liripo opened this issue · comments

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

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

Thanks.