How do you create connections for number of users, if you
want to improve performance?
Answers were Sorted based on User's Feedback
Answer / sachin s
YES, Just to add, what connection pooling is....In
connection pooling, after a connection is created, it is
placed in the pool and it is used over again so that a new
connection does not have to be established. If all the
connections are being used, a new connection is made and is
added to the pool. Connection pooling also cuts down on the
amount of time a user must wait to establish a connection
to the database.
| Is This Answer Correct ? | 0 Yes | 1 No |
what is the difference between?when we write the code in following manner? class One extends httpservlet { } and class One extends genericservlet { }
What is servlet in simple terms?
What are the different methods of session management in servlets?
How will you pass values from HTML page to the servlet?
What is the difference between servlet and filter?
What is ServletConfig object?
can servlet have instance variables?
init() method of servlet loaded by?
What are the mechanisms used by a servlet container for maintaining session information?
Hi guys.. Well can u tell me that why there is need of "init()" , i mean why can not we initialize the servlet object with the help of constructors? Thank you.
Which http method is said to be non-idempotent and idempotent?
What are the methods in HttpServlet?