What is session pooling?

Showing Answers 1 - 14 of 14 Answers

psdeepak

  • Oct 28th, 2005
 

pool is a set of equal instances

  Was this answer useful?  Yes

Muthukumar Koteeswaran

  • Nov 21st, 2005
 

i need a brief description about session and connection pooling

  Was this answer useful?  Yes

RamaKrishna

  • Nov 23rd, 2005
 

The Session Pool contains sessions created from transactions that originate in the Start state and have no input/output parameters.

  Was this answer useful?  Yes

imiten

  • Dec 3rd, 2005
 

Stateless Session beans are pooled and shared between clients. In general pooling is sharing resources rather than allocating new one for each request.

  Was this answer useful?  Yes

Session pooling can provide high performance in an environment that exhibits frequent connects and disconnects from a backend database.Connection pooling is a technique used for sharing server resources(usually databse) among requesting clients.Creating a connection is expensive; it requires your application to connect to the database server, authenticate, and return a valid connection.After a connecction is created it is placed in the connection pool. Connections are then used from the pool so that a new connection does not need to be established. If all the connections in the pool are being used, new connections are created and made avialable through the pool.

  Was this answer useful?  Yes

Manmohan

  • May 2nd, 2006
 

When session beans accessed thru many users then each time instance of bean created to serve the client's request after serving the client, ideal session bean goes to the session pool and wait for another request, session beans are verbs, they are not persistent, stateless session beans can serve thousand clients but stateful session beans has limitation coz they store conversation.

  Was this answer useful?  Yes

ambika

  • Apr 18th, 2007
 

its nothing but connection pool

  Was this answer useful?  Yes

sandeep sandy

  • May 15th, 2016
 

If I would like to deal 1000s and lakhs of users, is it good to depends on Session pooling?
Is amazon maintaining persistable sessions?

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions