项目作者: Erudika

项目描述 :
Lucene plugin for Para
高级语言: Java
项目地址: git://github.com/Erudika/para-search-lucene.git
创建时间: 2018-03-14T18:55:47Z
项目社区:https://github.com/Erudika/para-search-lucene

开源协议:Apache License 2.0

下载


" class="reference-link">Logo

Lucene plugin for Para

Maven Central
Join the chat at https://gitter.im/Erudika/para

What is this?

Para was designed as a simple and modular back-end framework for object persistence and retrieval.
It enables your application to store objects directly to a data store (NoSQL) or any relational database (RDBMS)
and it also automatically indexes those objects and makes them searchable.

This plugin allows you to use pure Lucene as the search engine for Para.

Documentation

Read the Docs

Getting started

The plugin is on Maven Central. Here’s the Maven snippet to include in your pom.xml:

  1. <dependency>
  2. <groupId>com.erudika</groupId>
  3. <artifactId>para-search-lucene</artifactId>
  4. <version>{see_green_version_badge_above}</version>
  5. </dependency>

Alternatively you can download the JAR from the “Releases” tab above put it in a lib folder alongside the server
WAR file para-x.y.z.war. Para will look for plugins inside lib and pick up the plugin.

Configuration

Here are all the configuration properties for this plugin (these go inside your application.conf):

  1. para.lucene.dir = "."

Finally, set the search config property:

  1. para.search = "LuceneSearch"

This could be a Java system property or part of a application.conf file on the classpath.
This tells Para to use the LuceneSearch as the Search implementation.

Dependencies

License

Apache 2.0