Hello,
I found in
this paper the following sentence: "We tested the three built-in DEUCE STM options: LSA (Lazy Snapshot Algorithm), TL2 (Transactional Locking II), and a simple Global Lock (A reference implementation).". I would like to play with these options to see whether there is an impact on performance for my little STM-Map I wrote (see
this post). I don't know what this Lazy Snapshot Algorithm really is. It sounds from the name somewhat like MVCC. I would imagine hat some MVCC-based approach would be ideal for such a map-based approach as with my STM-Map (see
pojo-mvcc). Therefore my question whether there is a way that I can turn on the LSA option.
Thanks, Oliver