高性能 JDBC 连接池:BeeCP-3.2.5
BeeCP:一款高性能JDBC连接池,具有代码轻,性能高的特点。 1:与其他连接池性能对比 CPU:I5-4460,OS:Win7_64 内存:8G,跑分源码出处:https://github.com/brettwooldridge/HikariCP-benchmark 2:版本下载(Java7或更高版本) <dependency> <groupId>com.github.chris2018998</groupId> <artifactId>beecp</artifactId> <version>3.2.5</version> </dependency> 3: 更新内容 优化池内候补线程 优化Transfer过程代码,提高性能 新增连接附加属性文本配置方式, 参考如下(properties) #两条附加配置(数字可自定义) connectProperties.count=2 #附加配置1(数字从1开始) connectProperties.1=prepStmtCache...