iudex-da 1.2.b.1-java → 1.2.b.2-java
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +12 -0
- data/Manifest.txt +1 -1
- data/lib/iudex-da/base.rb +1 -1
- data/lib/iudex-da/iudex-da-1.2.b.2.jar +0 -0
- data/pom.xml +1 -1
- metadata +3 -3
- data/lib/iudex-da/iudex-da-1.2.b.1.jar +0 -0
data/History.rdoc
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
=== 1.2.b.2 (2012-6-23)
|
2
|
+
* Add configurable transaction isolation level to ContentWriter,
|
3
|
+
ContentUpdater, and UpdateFilter. Change default level from
|
4
|
+
READ_COMMITED to REPEATABLE_READ where updater SELECT FOR UPDATE
|
5
|
+
locking works as intended, by delaying or rolling back overlapping
|
6
|
+
transactions as with PostgreSQL "could not serialize access due to
|
7
|
+
concurrent update" or "deadlock detected."
|
8
|
+
* Add retry loop to UpdateFilter with configurable retryCount (default
|
9
|
+
3) and logging. Warning: It is now possible for UpdateFilter
|
10
|
+
sub-chains to be executed repeatedly, though not at least in the most
|
11
|
+
common rollback/retry case.
|
12
|
+
|
1
13
|
=== 1.2.b.1 (2012-5-31)
|
2
14
|
* Use explicit UPDATE statements. This is ~10x faster than cursor
|
3
15
|
updateRow, at least with latest updates.
|
data/Manifest.txt
CHANGED
data/lib/iudex-da/base.rb
CHANGED
Binary file
|
data/pom.xml
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: iudex-da
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 4
|
5
|
-
version: 1.2.b.
|
5
|
+
version: 1.2.b.2
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- David Kellum
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-06-
|
13
|
+
date: 2012-06-23 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: iudex-core
|
@@ -160,7 +160,7 @@ files:
|
|
160
160
|
- test/test_migrate.rb
|
161
161
|
- test/test_poll_work.rb
|
162
162
|
- test/test_pool_factory.rb
|
163
|
-
- lib/iudex-da/iudex-da-1.2.b.
|
163
|
+
- lib/iudex-da/iudex-da-1.2.b.2.jar
|
164
164
|
homepage: http://github.com/dekellum/iudex
|
165
165
|
licenses: []
|
166
166
|
|
Binary file
|