Originally posted by Vijay S Rathore:
At any point in time the servelet container has only one instance of servlet.
There is no question of servlet pool arises here.
hi Vijay,
You may search the
word "pool" in Servlet spec, you will see that a container is allowed to use a pool of servlet instances to improve the performace!
Venkatesh, the implementation of servlet instance pool is specific to container, containers may maintain a pool for servlet, but it is not required, some containers may allow you to maintain the pool by setting, but some may not allowed, you must read the container's documentation to get the information about this!