How good is Oracle Universal Connection Pool (UCP)

后端 未结 6 919
终归单人心
终归单人心 2020-12-05 05:02

Does anybody have experience with using Oracle UCP under real production load? Does it handle database reconnects well? Are there any multi-threading issues? Has anybody com

6条回答
  •  北海茫月
    2020-12-05 05:09

    I have just tried UCP with our Eclipse Link based application and I run into ORA-0100: Maximum open cursors exceeded every time. I have set the parameter MaxStatements to 10 but that had no effect. I have inspected the Heap and there were hundreds of T4CPreparedStatement objects alive but less than 10 wrapped statements. So there is a huge statement cache somewhere that I can not control.

    Tomcat jdbc pool works like a charm.

提交回复
热议问题