From 8634d2f236ef80f3dd9e9d66affb2308ee4cc68e Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Fri, 8 Aug 2014 15:02:56 +0900 Subject: [PATCH] Correct quote. Update benchmark. --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f4cd732..07970b2b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ There is nothing faster. There is nothing more correct. HikariCP is a "zero-overhead" production ready JDBC connection pool. Coming in at roughly 50Kb, the library is extremely light. Read about [how we do it here](https://github.com/brettwooldridge/HikariCP/wiki/Down-the-Rabbit-Hole). -   **"Simplicity is a prerequisite for reliability."**
+   **"Simplicity is prerequisite for reliability."**
         - *Edsger Djikstra*
---------------------------------------------------- @@ -38,9 +38,8 @@ Using the excellent [JMH microbenchmark framework](http://openjdk.java.net/proje * One *Statement Cycle* is defined as single ``Connection.prepareStatement()``, ``Statement.execute()``, ``Statement.close()``. -1 BoneCP fails to complete *Statement Cycle* benchmark unless the "CACHED" pool strategy is used.
-2 Tomcat fails to complete *Statement Cycle* benchmark when "StatementFinalizer" feature is enabled.
-3 Benchmark results run against HikariCP 1.3.3
+1 Versions: HikariCP 2.0.2, BoneCP 0.8.0, Tomcat 8.0.9, Vibur 1.2.0, C3P0 0.9.5-pre8
+2 Java options: -server -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xmx512m
----------------------------------------------------