- Does ruby on rails have issues with regards to max # of threads the server and serve?
i.e. you have to run multiple instances of the server if you reach high load?
i.e. you have to run multiple instances of the server if you reach high load?
Ruby-on-rails is by design single-threaded. To be able to server multiple users efficiently there are several solutions:
Does that help?