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.
I guess key elements I would consider would be:
I hope this helps.