Oracle-Developer.com Forums
A forum for discussing and sharing information about Oracle technologies
 

Navigation: Home  | Discussion Forums  |  Scripts  |  About Us  | Links  | Job Openings  | Blog  
 FAQFAQ   SearchSearch   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Email your Oracle questions to webmaster@oracle-developer.com to get Oracle 11g or Oracle E-Business expert advice.

Database Resident Connection Pooling (DRCP)

 
Post new topic   Reply to topic    Oracle-Developer.com Forums Forum Index -> Oracle 11g New Features Discussion
View previous topic :: View next topic  
Author Message
vj.jain
Site Admin


Joined: 10 Aug 2007
Posts: 85

PostPosted: Tue Nov 20, 2007 4:47 am    Post subject: Database Resident Connection Pooling (DRCP) Reply with quote

Oracle 11g has introduced a new background process to support server-side connection pooling called Database Resident Connection Pooling (DRCP). With DRCP, different application processes can share sessions on the same machine and also across a multitude of machines. This new feature greatly increases the scalability of applications that cannot be deployed as multithreaded, such as PHP applications. DRCP is also useful to multi-threaded applications that frequently maintain idle connections.

Database Resident Connection Pooling provides a connection pool within the database server to support situations where an application requires a database connection for a short amount of time before releasing the connection. DRCP works by creating a pool of dedicated servers which consist of a server foreground and a database session combined; a model that is referred to as “pooled” servers.

The pooled servers are managed within the database by a process called the “connection broker”. Upon a client request, the connection broker hands-off the client to an available pooled server. If no pooled servers are available, it creates one. If the pool has reached its defined maximum, the client request is placed on a queue until a pooled server is available. The client communicates directly with the assigned pooled server, which essentially behaves as a dedicated server, until the client releases it, at which time the pooled server is returned to the connection broker.



For more information about DRCP (Server-side connection pooling), make sure you get a copy of Oracle 11g New Features Guide by John Garmany, Steve Karam, Lutz Hartmann, V. J. Jain, and Brian Carr http://www.oracle-developer.com/oracle_11g_new_features.html
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Oracle-Developer.com Forums Forum Index -> Oracle 11g New Features Discussion All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Sponsored by Oracle Consulting

Copyright ©2007 Oracle-Developer.com