Callback limitations per page

Hi all,
We are developing a multi-page app using Python dash. Some pages are very heavy and the number of callbacks are growing. Anybody knows of any best practices on the number of callbacks per page?

Thanks

Hello @231530353,

Always try to off-load callbacks to clientside callbacks where possible. This will increase the response time of the server. :slight_smile:

Thanks for the reply, I didn’t know about the client side callback.