How does Xojo Web handle bursty request loads?

You can read some about it in this thread: Multi-user web app with a great many simultaneous users

Long story short:

  • Xojo servers are SINGLE THREADED, so in order to serve many users you need a LOT of instances and load balancing
  • Being “compiled” it is kind of a bad thing here, it means you requiere more ram and cpu to run each instance (more expensive)
1 Like