How many active users have you seen Bubble handle smoothly? Share your experiences with server reliability and growth challenges—what’s your take on their capacity?
Well different apps have different stories
For mine a really complex app in starter plan can handle max 80 active user whereas a normal app can handle about 400 users live users.
Not counting others factors
Thanks for sharing your insights, @siddharth ! What strategies have you tried to optimize performance for your complex app? Have you found any particular features or tweaks in Bubble that have helped manage user load better?
Yes, some of the strategies that I use
I prefer using external database (I use supabase)
Instead of using built in do a search from function, Let the search queries for database be from external db using API
I avoid using 3rd party plugins as much as possible
Use reusable components as much as possible
I use local storage to store the data which are frequently needed instead of searching in database.
Instead of creating different pages i try to use groups which hide and unhide on same page
I use tables more than repeating groups
I never use do every x second thing
I break long workflow into smaller pieces to prevent timeouts
I don’t prefer using any templates like canvas
I use custom states to store temporary data instead of db
I preload important data in hidden group, and use it in other groups for reference or data, it helps
Cant remember more but there are more I wish to share
These are few, solely based on my experience, it may not fall under best strategy but you can try it out
HI @siddharth .
I preload important data in hidden group, and use it in other groups for reference or data, it helps
Regarding to this point what is the benefits to do that as you know if you make 5 do a search
this will query database one time ?