0

I have Lucene in my WebSite. How can I migrate Lucene to Solr or ElasticSearch? Is Possible importing Lucene indexes to Solr or ElasticSearch?

user2703780
  • 27
  • 1
  • 6

2 Answers2

0

You cannot migrate Lucene to Solr because Solr is built on Lucene. Lucene is the search engine library, Solr is the search server. ES is also a search and analytics Engine.

So you are best off using Solr on top of Lucene, so to say.

Graham
  • 7,431
  • 18
  • 59
  • 84
Lefty G Balogh
  • 1,771
  • 3
  • 26
  • 40
0

You can use lucene indexes for the searching using the Solr.

As per this guide.

Can Solr indexes be read by Lucene and vice-versa?

Since Solr uses Lucene under the hood, Solr indexes and Lucene indexes are one and the same thing. There is technically no such thing as a Solr index, only a Lucene index created by a Solr instance.

Community
  • 1
  • 1
Root
  • 955
  • 1
  • 16
  • 39