Oracle OCI 连接池与 Oracle UCP
当 OCI 驱动程序用于 JDBC 连接时,Oracle 提供 4 种不同的 JDBC 连接池机制:
- Oracle DataSource
- Oracle OCI 连接池
- Oracle UCP(通用连接池 - 推荐优于 OracleDataSource)
- Oracle 数据库驻留连接池
使用 Oracle UCP 的优点和缺点是什么(通用连接池)与 OCI 驱动程序提供的 Oracle OCI 连接池相比?
Oracle offers 4 different JDBC connection pooling mechanisms when the OCI driver is used for JDBC connections:
- Oracle DataSource
- Oracle OCI Connection Pooling
- Oracle UCP (Universal connection pooling -recommended over OracleDataSource)
- Oracle Database Resident Connection pooling
What are the pros and cons of using Oracle UCP (Universal Connection Pooling) as compared to Oracle OCI Connection Pooling provided by the OCI driver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将尝试根据我迄今为止阅读的内容添加一些细节。
以下是不同连接池机制支持的一些独特功能
Oracle UCP(通用连接池)
a.支持快速连接故障转移 (FCF)、运行时连接负载平衡和连接关联等功能。
b. JMX 支持
c.支持标记连接
d.支持连接收集
OCI(Oracle 调用接口)连接池
a.支持会话复用。
Oracle数据源
a.隐式连接缓存。
I will try adding some details based on the reading I have done so far.
Below are some distinct features supported by the different connection pooling mechanisms
Oracle UCP (Universal Connection Pooling)
a. Supports features like Fast Connection Failover (FCF), Runtime connection load balancing and connection affinity.
b. JMX Support
c. Support for labelling connections
d. Support for connection harvesting
OCI (Oracle Call Interface) Connection Pooling
a. Support for session multiplexing.
OracleDataSource
a. Implicit connection cache.