OrientDB Index Performance Evaluation

In this tutorial we evaluate the OrientDB index performance using transactional and non-transactional graphs. The evaluation tool uses  OrientDB version 2.2.17 and Tinkerpop 2.6. We create an index on a vertex property, insert multiple test vertices, commit the data and read a specific element afterwards. You can download the project on Github. Let us start of with the pom.xml file for the required OrientDB dependencies. <dependencies> <!– OrientDB –> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-core</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-graphdb</artifactId> <version>${orientdb.version}</version> </dependency> <!– For remote OrientDB Access –> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-client</artifactId> <version>${orientdb.version}</version> </dependency>…

Read More