Lucene sort in AaZz order

2019-01-15 Thread egorlex
Hi Hi all, i need help with understand how Lucene sort works. This is example how i create sort field. document.add(new SortedDocValuesField("by_name", new BytesRef(family.getName(; And when i make sort by name i get result in this order - azAz, but i need AaZz. Could someone help me wit

Lucene stops working

2018-11-02 Thread egorlex
Hi, I am new in Lucene and i have strange problem. Lucene stops working without any errors after some time. It works fine for 1 day or several hours. I did some investigation and found that 5 IndexReaders are opened in the search method, but they do not close when exiting the method..can it be a c

Re: Lucene stringField EnglishAnalyzer serch nor working

2018-07-20 Thread egorlex
Hi Erick, Thanks for reply, In need find document by uuid (random generated field). Example of create field in document: Document document = new Document(); document.add(new StringField("uuid", product.getId() , Field.Store.YES)); Example of query to search: Map boosts = new HashMap<>();

Lucene stringField EnglishAnalyzer serch nor working

2018-07-20 Thread egorlex
Hi, please help.. I need exact match for my search for one field. I make it by stringField, but it is not working no search result.I tried lowercase but it still no result in search. I tried text field and it works but it is no exact match.. I use EnglishAnalyzer Thanks! -- Sent from: http

Lucene add synonyms to serch

2018-06-21 Thread egorlex
Hi, I am new in Lucene and I need add synonyms to my search. I tried use SynonymFilterFactory for this purpose, but it deprecated for Lucene 7.3.0 Please help me with some examples or documentation. What is the best way to realized it? -- Sent from: http://lucene.472066.n3.nabble.com/Lucene

Re: Lucene same search result for worlds with and without spaces

2018-06-20 Thread egorlex
Thanks for replay! sorry, could you help a little, according to example "given the phrase “Shingles is a viral disease”, a shingle filter might produce: Shingles is is a a viral viral disease " I do not quite understand how this ShingleFilter can turn "similarissues" into "similar issues" Tha

Lucene same search result for worlds with and without spaces

2018-06-19 Thread egorlex
Hi, I need help with Lucene. How a can realize same search result for worlds with and without spaces. For example request "similar issues" and "similarissues" must return all Similar Issues. Thanks. -- Sent from: http://lucene.472066.n3.nabble.com/Lucene-Java-Users-f532864.html

Lucene same search result for worlds with and without spaces

2018-06-19 Thread egorlex
Hi, I need help with Lucene. How a can realize same search result for worlds with and without spaces. For example request "similar issues" and "similarissues" must return all Similar Issues. Thanks. -- Sent from: http://lucene.472066.n3.nabble.com/Lucene-Java-Users-f532864.html