-
Notifications
You must be signed in to change notification settings - Fork 21
Home
Welcome to the orientdb-lucene wiki!
From OrientDB versions greater than 2.1 and onwards, orientdb-lucene is not a separate project anymore, but part of the OrientDB server, and thus does not require further installation.
Orientdb-lucene for now supports two types of index
orientdb-lucene is compatible with OrientDB >= 1.7 (also 1.7-SNAPSHOT latest) up to v2.1.
Server Mode
Starting from OrientDB 2.0, Lucene plugin is part of the OrientDB distribution.
Go to the releases page, pick up a release
and put the jar in your OrientDB installation under the plugins
directory. Restart the server and start using Lucene.
If the plugin is correctly installed, you will se a in the server log:
INFO Lucene index plugin installed and active. Lucene version: LUCENE_47 [OLuceneIndexPlugin]
OR
Clone this project and run
mvn assembly:assembly
and copy the jar (orientdb-lucene-version-dist.jar) from target folder into the 'lib' directory of your OrientDB installation
Embedded Mode
Add the Sonatype Nexus Snapshots into your pom
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Then add the orientdb-lucene dependency
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-lucene</artifactId>
<version>${version}</version>
</dependency>
Home - OrientDB Engine - Professional Support - Courses - Team
Copyright (C) Orient Technologies LTD - All rights reserved.
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-28543690-2', 'orientechnologies.com'); ga('send', 'pageview'); </script>