In connection pool,when 100 clients are requesting, in pool
100 objects is there, when another client is making request
how it will work
Answers were Sorted based on User's Feedback
Answer / ballu
connection ojbect from one of the inactive client will be
saved (with its state) and freed up connection object will
be given to new request.
if all 100 clients are using connection objects actively
then depending on implentation either 101th client will
wait or server will spawn 101th connection object.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / mallikarjuna
i think client is waiting for the anyone return the object
to connectionpool
Is This Answer Correct ? | 0 Yes | 3 No |
Give me simple example of hibernate caching and explain the details of caching????? thanks in adv.
What is Introspection?
When you will synchronize your code?
the advantages of polymorphic
how java is os independent language ?
How substring() method of string class create memory leaks?
What is there in browser that it supports web based applications of java or any other PL?
Is “abc” a primitive value?
What are the high-level thread states?
What is synchronization and why is it important?
What is servlet preinitialization
Is multiple try block is possible in single java Application......