I am trying to understand the differences of different web technologies under load (as in lots of users visiting the site).
My basic understanding so far is that every visit to a php site creates a new instance in memory that must be managed by the server, while with Ruby on Rails (or Java) each visit is managed in a new thread with much less overhead.
Can somebody tell me if my understanding is correct and / or help expand my understanding?
My basic understanding so far is that every visit to a php site creates a new instance in memory that must be managed by the server, while with Ruby on Rails (or Java) each visit is managed in a new thread with much less overhead.
Can somebody tell me if my understanding is correct and / or help expand my understanding?