Getting Exception : java.nio.channels.ClosedByInterruptException

2019-03-31 Thread Chellasamy G
Hi All, I am committing an index periodically using a scheduler. On a rare case I got the below exception in the committing thread, Lucene Version : 7.4.0 java.nio.channels.ClosedByInterruptException at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel

Re: Case Insensitive Search for StringField

2018-05-27 Thread Chellasamy G
filter. Ahmet On Friday, May 25, 2018, 1:50:19 PM GMT+3, Chellasamy G <chellasam...@zohocorp.com> wrote: Hi Team, Kindly help me out with this problem. Thanks, Satyan On Wed, 23 May 2018 15:01:39 +0530 Chellasamy G &

Re: Case Insensitive Search for StringField

2018-05-25 Thread Chellasamy G
Hi Team, Kindly help me out with this problem. Thanks, Satyan On Wed, 23 May 2018 15:01:39 +0530 Chellasamy G <chellasam...@zohocorp.com> wrote Hi, Thanks for the reply. Actually I need to implement it for StringField which is non-analyz

Re: Case Insensitive Search for StringField

2018-05-23 Thread Chellasamy G
ored fields where hits are fetched from. Le mer. 23 mai 2018 à 08:36, Chellasamy G <chellasam...@zohocorp.com> a écrit : > > > Hi, > > > > I can't find any way to perform case insensitive search on StringField. > Please help me out. &

Case Insensitive Search for StringField

2018-05-22 Thread Chellasamy G
Hi, I can't find any way to perform case insensitive search on StringField. Please help me out. i.e If the field value is "Flying Robots", then the phrases "flying robots", "fLying RObots" etc should match the value. I also need the original case of the field value to be preserved

RE: How to use customized Collector class with IndexSearcher.searchAfter() method

2018-05-21 Thread Chellasamy G
- Uwe Schindler Achterdiek 19, D-28357 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -Original Message- > From: Chellasamy G <chellasam...@zohocorp.com> > Sent: Friday, May 18, 2018 8:00 PM > To: java-user <java-user@lucene.apache

How to use customized Collector class with IndexSearcher.searchAfter() method

2018-05-18 Thread Chellasamy G
Hi, I have written a customized collector and usually search the index using this collector. i.e using the below method, IndexSearcher.search(Query query, Collector results) But, I cant find any searchAfter() methods in IndexSearcher which accepts a Collector input. Please let me

Difference between SortedDocValues and SortedSetDocValues

2017-10-12 Thread Chellasamy G
Hi, Could anyone please explain the difference between SortedDocValues and SortedSetDocValues. Is any one among them efficient than the other? Any use-case where each class can be used would be much helpful. Thanks in advance. -Satyan

How to resuse FacetField in lucene

2017-01-16 Thread Chellasamy G
Hi, I am trying to reuse Field and Document classes in lucene for fast indexing. I have used faceting in my application. So when trying to reuse FacetField by calling setStringValue() function, it is throwing NullPointerException. Please let me know how to reuse FacetField. Thanks