0

I've been looking for something like redis transactions in a few other NoSQL databases but I couldn't find something similar. I'm aware of this answer which does have some valid point of views, but without getting very deep of the reasons of my question, am I overlooking this feature in another NoSQL db?

Community
  • 1
  • 1
cyraxjoe
  • 5,661
  • 3
  • 28
  • 42

4 Answers4

5

FoundationDB is a NoSQL key-value store that supports ACID transactions.

Preetam Jinka
  • 329
  • 3
  • 9
2

Neo4J has ACID transactions. It's a graph database instead of a key-value store, but still gets categorized as NoSQL.

http://docs.neo4j.org/chunked/stable/transactions.html

Gabe Martin-Dempesy
  • 7,687
  • 4
  • 33
  • 24
0

The world of NoSQL is very vast and there are many NoSQL solution that offers transactions capabilities. The one I know best is GT.M, which implements full support for ACID (Atomic, Consistent, Isolated, Durable).

Laurent Parenteau
  • 2,516
  • 20
  • 31