Tips for speeding up dcc.Tabs on dash

If you are storing a lot of data in a Store, the data will be transferred between the client and the server for each callback, which might slow down the app. If this is the problem, you might experience an improvement by caching the data server side. See e.g. this example,