1

What are techniques to implement partial transaction support on the application level using non-transactional database?

Can You please share links to such technics?

Alex Craft
  • 13,598
  • 11
  • 69
  • 133
  • 1
    have a look at that http://api.mongodb.org/wiki/current/two-phase%20commit.html – mpm Feb 11 '13 at 02:18

1 Answers1

1

There is a technique called Last Resource Commit Optimization. JBoss Transactions documents it some detail here and here. It's not geared at non-transactional databases, rather, at non-XA supporting databases, but I believe the pattern may be sound enough to be applied.

Nicholas
  • 15,916
  • 4
  • 42
  • 66