Improving App Performance [ Help Please ]

Thanks @johndy

Let me give you a tip:

If you are using dcc.Store let implement server side caching callback, it’s very easy to do because use the same dcc.Store and you only need to make two minor changes in your code, just import the library:


from dash_extensions.enrich import Dash, ServersideOutput, Output, Input, State, Trigger

And replace the Output to the dcc.Store with:


ServersideOutput(

It uses the same Inputs, and manage all the info in the server side.

Thanks @Emil for such a great tool !! :smiley:

2 Likes