summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2014-10-22 13:02:00 -0400
committerJames Moger <james.moger@gitblit.com>2014-10-22 22:29:05 -0400
commitecb0c4d4a0f118792c73b1244b389e6a02d00d31 (patch)
tree86a2eabe4fa4d92761d3892c9dbfadc115bd34e2
parent85010c79ba34abf2c861613f8d8577b367e60faf (diff)
downloadiciql-ecb0c4d4a0f118792c73b1244b389e6a02d00d31.tar.gz
iciql-ecb0c4d4a0f118792c73b1244b389e6a02d00d31.zip
Documentation
-rw-r--r--releases.moxie7
-rw-r--r--src/site/performance.mkd6
2 files changed, 11 insertions, 2 deletions
diff --git a/releases.moxie b/releases.moxie
index 36b9af6..10bf70f 100644
--- a/releases.moxie
+++ b/releases.moxie
@@ -18,7 +18,12 @@ r21: {
- Add syntax for IN and NOT IN (pr-7)
- Add support for nested AND/OR conditions (pr-8)
- Add support for mapping SQL BOOLEAN to primitive numeric types, not just object numeric types
- dependencyChanges: ~
+ dependencyChanges:
+ - H2 1.4
+ - HSQLDB 2.3
+ - Derby 10.11
+ - MySQL 5.6
+ - PostgreSQL 9.3
contributors:
- James Moger
- Kazunobu Raita
diff --git a/src/site/performance.mkd b/src/site/performance.mkd
index 34e545c..671345e 100644
--- a/src/site/performance.mkd
+++ b/src/site/performance.mkd
@@ -13,9 +13,13 @@ The following data was generated by running the *single-threaded* iciql test sui
Connections are pooled to normalize embedded database performance with out-of-process database performance. Some of the Java embedded database configurations have a very high startup-time penalty. Notably, H2 is slow to open a database and its performance is substantially affected if connection pooling is not enabled to keep the embedded database open.
+External process databases (MySQL & PostgreSQL) use the default settings as provided by the platform.
+
All tables are created as CACHED when the database distinguishes between CACHED and MEMORY tables.
-All performance numbers include the combined overhead of iciql statement generation and JUnit 4 test framework execution so they are not bare-metal database metrics.
+All performance numbers include the combined overhead of iciql statement generation and JUnit 4 test framework execution so they are not bare-metal database metrics.
+
+All bulk operations (insertAll, updateAll, deleteAll, etc) automatically create savepoints, if supported by the JDBC connector, to help ensure atomicity of the operation.
<pre>
%DBPERFORMANCE%