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?
Asked
Active
Viewed 553 times
4 Answers
5
FoundationDB is a NoSQL key-value store that supports ACID transactions.

Preetam Jinka
- 329
- 3
- 9
-
1And provides very nice Python API – Dima Tisnek Jan 16 '13 at 09:22
-
1Also can be expanded over multi-node clusters. – eonil Oct 28 '13 at 14:47
2
Neo4J has ACID transactions. It's a graph database instead of a key-value store, but still gets categorized as NoSQL.

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