Until now, I know that ArangoDB uses MVCC and therefore creates revisions of nodes and edges for a period of time undefined until the garbage collector removes them.
I would like to implement a graph database schema, and I need to save the state of this database at a specific time. This means that I will set the time when the database management system takes a snapshot (for example, every week).
So, my short question is: is it possible to save versions / versions of nodes / edges in arangodb (or, possibly, with a plugin) and the timestamp of their creation?
If not, are there other graph databases that can do this?
mawey source
share