From f557edfad5e7c1fd06b814d3019d4618bcb1a358 Mon Sep 17 00:00:00 2001 From: brettwooldridge Date: Wed, 13 Nov 2013 21:31:21 +0900 Subject: [PATCH] Moved maven section. --- README.md | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 098b651f..c0210bc1 100644 --- a/README.md +++ b/README.md @@ -20,18 +20,33 @@ See benchmarks [here](https://github.com/brettwooldridge/HikariCP/wiki/Benchmark Or look at this: ![](http://github.com/brettwooldridge/HikariCP/wiki/50Connection_MixedBench.png) ------------------------------- +---------------------------------------------------- +### Maven Repository ### + + + com.zaxxer + HikariCP-parent + 1.1.7 + compile + + +HikariCP comes with two jars: ``HikariCP-1.x.x.jar`` and ``HikariCP-agent-1.x.x.jar``. The "core" jar contains +everything you need to run. If you wish to use *instrumentation* mode to go a little faster, you'll also need +the agent jar. See below for details. + +---------------------------------------------------- #### Driver Support #### HikariCP has two modes of operation: **Delegation** and **Instrumentation**. *Instrumentation* is approximately 20-40% more performant, but both are exceedingly fast. ##### Delegation ##### -Delegation mode is supported for *all* JDBC drivers. +Delegation mode is supported for *all* JDBC drivers. This is included in the core HikariCP jar. ##### Instrumentation ##### -Instrumentation mode is supported for specific JDBC drivers. If your favorite database is not supported, drop us a note -in the [Google group](https://groups.google.com/d/forum/hikari-cp) and we'll try to add support for it. Below is a table of drivers that are supported and their -status: +Instrumentation mode is supported for specific JDBC drivers. For instrumentation, you will need the "agent" jar +in addition to the core jar. If your favorite database is not supported, drop us a note in the +[Google group](https://groups.google.com/d/forum/hikari-cp) and we'll try to add support for it. Below is a table +of drivers that are supported and their status: | Driver | Version1 | Status | DataSource2 | | ----------------- | --------------:| --------- | ------------ | @@ -185,16 +200,6 @@ development and pre-Production. ---------------------------------------------------- -### Maven Repository ### - - - com.zaxxer - HikariCP-parent - 1.1.7 - compile - ----------------------------------------------------- - ### Initialization ### HikariConfig config = new HikariConfig();