I am looking for open source Software Transactional Memory implementation. A list of such implementations in Java will be helpful. Also please point me to performance benchmark comparisons.
|
|
multiverse - java based STM implementation Dynamic Software Transactional Memory Library 2.0 (to build it yourself) |
|||
|
|
You might want to look at Clojure - it's a JVM language with strong STM-based concurrency capabilities, and all the code is open source. Here's a trivial example of a STM-protected piece of Clojure code:
Everything inside the (dosync ...) is protected by STM, so the 10 threads (launched by (future ...) ) never interfere with each other. I use Clojure as an "STM wrapper" for some elements of my Java code, so this is definitely a viable approach if you are looking at implementing on the JVM. You might also find it interesting to watch this video on Clojure's concurrency / STM capabilities. |
|||
|
|
|
The akka project has an implementation of Software Transactional Memory with benchmarks. |
|||
|
|