From 0c6d6b65f2b0dbfbd3256e2a67383a3ee0acf742 Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Tue, 28 Jul 2015 12:54:15 +0900 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 010fe04b..c0b6a976 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Fast, simple, reliable. HikariCP is a "zero-overhead" production ready JDBC connection pool. At roughly 90Kb, the library is very light. Read about [how we do it here](https://github.com/brettwooldridge/HikariCP/wiki/Down-the-Rabbit-Hole).    **"Simplicity is prerequisite for reliability."**
-         - *Edsger Dijkstra*
+         - *Edsger Djikstra* ---------------------------------------------------- @@ -12,7 +12,7 @@ _Java 7 and Java 8 maven artifact:_ com.zaxxer HikariCP - 2.4.0-rc1 + 2.4.0 compile ``` @@ -21,7 +21,7 @@ _Java 6 maven artifact (*maintenance mode*):_ com.zaxxer HikariCP-java6 - 2.3.8 + 2.3.9 compile ``` @@ -33,7 +33,7 @@ Or [download from here](http://search.maven.org/#search%7Cga%7C1%7Ccom.zaxxer.hi Microbenchmarks were created to isolate and measure the overhead of pools using the [JMH microbenchmark framework](http://openjdk.java.net/projects/code-tools/jmh/) developed by the Oracle JVM performance team. You can checkout the [HikariCP benchmark project for details](https://github.com/brettwooldridge/HikariCP-benchmark) and review/run the benchmarks yourself. -![](https://github.com/brettwooldridge/HikariCP/wiki/Benchmarks.png) +![](https://github.com/brettwooldridge/HikariCP/wiki/HikariCP-bench-2.4.0.png) * One *Connection Cycle* is defined as single ``DataSource.getConnection()``/``Connection.close()``. * In *Unconstrained* benchmark, connections > threads. @@ -41,7 +41,7 @@ Microbenchmarks were created to isolate and measure the overhead of pools using * One *Statement Cycle* is defined as single ``Connection.prepareStatement()``, ``Statement.execute()``, ``Statement.close()``. -1 Versions: HikariCP 2.1.0, BoneCP 0.8.0, Tomcat 8.0.9, Vibur 1.2.0, C3P0 0.9.5-pre8, Java 8u20
+1 Versions: HikariCP 2.4.0, commons-dbcp2 2.1, Tomcat 8.0.23, Vibur 3.0, c3p0 0.9.5.1, Java 8u45
2 Java options: -server -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xmx512m