snovo
snovo

Reputation: 305

ArangoDB TransactionalGraph implementation for Blueprints

I'm trying to benchmark ArangoDB with GraphDBBenchmark, the problem is that the framework assumes that a graph database provides a Blueprints TransactionalGraph implementation. ArangoDB doesn't seem to have such in blueprints-arangodb-graph Is there a reason why Arango doesn't provide the TransactionalGraph functionality in its Blueprints API? Can anyone point me to a sample Arango Blueprints TransactionalGraph implementation ?

Upvotes: 2

Views: 276

Answers (1)

stephen mallette
stephen mallette

Reputation: 46226

It appears that currently ArangoDB does not support that interface. You can see from the "features" definition that suppportsTransactions is "false".

Upvotes: 1

Related Questions