jakarta-eearchitectureloadhigh-traffic

How to handle load in a high traffic Java web application?


I am developing a high-traffic java web application. Currently I'm defining its architecture. I have some questions:

I expect hundreds of user logging in at a time. I am planning to keep data in application scope (static variables) to avoid lookups in the database. In session I am planning to store 5kB of data.


Solution

  • I guess key elements I would consider would be:

    I hope this helps.