Basic tips to improve your app’s overall performance
In the previous chapters, you learned a lot of different methods, tools, and techniques to test your app’s performance. You decided to run some tests and discovered your application performance is not great. What to do now? When facing issues with performance in a Bubble app, implementing basic optimization tips can help improve the efficiency and performance of your app. Let’s take a look at them:
- Simplifying workflows: Make sure workflows have fewer steps and run faster. Reduce the number of workflows by creating reusable ones. If an action will take too much time to load, run it in the background and let the users come back to the action later. Don’t forget to properly communicate about it.
- Minimizing database queries: The bigger the query is, the more data you require, or the more filters you add and the bigger the data size, the more time it will take to load. Try to break queries into...