concurrent « User « JSP-Servlet Q&A





1. how to create unique ID in JSP for concurrent users    coderanch.com

Hi, I am developing an application using JSP and Tomcat. Each time a user access a jsp, a new directory specific for this user is created. After some operations, the directory is deleted. I need to create a unique directory name for each user. I am thinking of using an array to hold integer. The value of count then append to ...

2. How to handle large number of concurrent users?    coderanch.com

The thing to remember is that a session is little more than a map full of references to objects on the heap. In other words, the session itself takes up very little memory. Once you understand that, it should be pretty easy to picture how your use of sessions will affect your app under different loads. If you have a high ...

3. Concurrent users to the web site    java-forums.org