How to test the ACID properties of a database

Hi!

I'm new to Neo4j, but I'm excited to learn and explore all about it. So I'm doing my masters thesis on how to test the ACID properties of a graph database, and would like to know if there's a proper way to go about it.

Hi @dabick14 ,

If "how to test the ACID properties of a graph database" is your thesis statement, then you could proceed by looking at the methods used for a relational database and applying them to Neo4j.

You could explore the transactional behavior of Neo4j by accessing Cypher (Neo4j's query language, like SQL for graphs) through the embedded Java API. Start here: Transaction management - Java Reference

Best,
ABK

That's great. Thank you. I will look into it.