London guy
London guy

Reputation: 28032

Changing the index format in Lucene

I used lucene 4.2 to build the index and I am trying to query the index using 3.6. It throws some exception on index format. I dont want to spend time in rebuilding the index using 3.6.

Is there a workaround for this quickly?

Upvotes: 0

Views: 182

Answers (1)

javanna
javanna

Reputation: 60245

Open the index with 4.2 in order to be able to read it. The index format has changed, that's why you cannot open a 4.x index with a 3.x lucene.

Upvotes: 1

Related Questions