sem
5
Mostly in programming you normalize which means in your case that you have a table with one booking per row per user and you simply fetch all the bookings that belong to that specific user.
So suppose you use Postgres and you have 1.000.000 users and 10.000.000 bookings you query to get the specific bookings for that user and it will return for instance one user and 1.000 bookings in 50 milliseconds and you can do that 1000 times a second on a $5 VPS server.
That’s why currently it is good to learn about Bubble specifics because what you normally would do in programming is either slow on Bubble or economically not feasible.