Search code examples
orientdb

OrientDB - how to disable transaction?


sorry for so simple question, but how to disable transaction in OrientDB? Maybe it can do used by OrientDB studio or sql query, anything, thanks.


Solution

  • If you use document DB transactions are already disabled by default.

    If you use graph DB you shoul call

    com.tinkerpop.blueprints.impls.orient.OrientTransactionalGraph#setAutoStartTx

    with false.