| Author |
how many users can concurently access my deployed JSP website?
|
Monica. Shiralkar
Ranch Hand
Joined: Jul 07, 2012
Posts: 186
|
|
|
suppose i have created a JSP website and deployed it.How many users can access it.How will it be decided.Say I have not defined any thing.what will be the default behaviour.How many users can access it concurrently?
|
 |
William P O'Sullivan
Ranch Hand
Joined: Mar 28, 2012
Posts: 860
|
|
As many as the server allows.
There may be some technical limit such as open network connections etc.,
but from a webapp perspective, the sky's the limit.
WP
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26193
|
|
You'll need to run a load/stress test to find out the capacity of your application and server.
For application, it will depend heavily on what these "JSPs" do. I suspect they do more than just render HTML. Like maybe they go against the database.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: how many users can concurently access my deployed JSP website?
|
|
|