Search Discussions
-
Hi all. The Lucene 4 migration guide "helpfully" suggests to work with BytesRef directly rather than converting to string, but I disagree. Take the following example of building up a List<Term by ...
Trejkaz
May 20, 2015 at 4:19 am
May 21, 2015 at 3:22 pm -
Hi, I need to search using group join with AND through fields in different documents. For example I might have the documents: doc1: field1=a, parentId=1 doc2: field2=b, parentId=1 What a need is to ...
Eduardo Manrique
May 18, 2015 at 11:33 pm
May 20, 2015 at 9:11 pm -
Hi, We are using lucene 2.9.4 version for our application that has search. We are planning on upgrading our application to run on java 8. My Question is when we move to java 8 does the lucene-2.9.4 ...
Pushyami Gundala
May 6, 2015 at 8:44 pm
May 7, 2015 at 9:35 am -
Hi, I have SOLR 4.9 with master/slave architecture. And I use DocValue for custom ranking. After I update doc on master, it looks like the DocValue not get replicated to slave. After I wait for next ...
Felton Fei
May 1, 2015 at 1:20 am
May 6, 2015 at 10:28 pm -
Hi all. I know with older Lucene there was a recommendation never to use Version.CURRENT because it would break backwards compatibility. So we changed all our code over to call, for instance, new ...
Trejkaz
May 29, 2015 at 1:04 am
Jun 1, 2015 at 3:38 am -
Hello List, When a similarity returns NEGATIVE_INFINITY, hits[i].doc becomes 2147483647. Thus, exception is thrown in the following code: for (int i = 0; i < hits.length; i++) { int docId = ...
Ahmet Arslan
May 29, 2015 at 12:18 pm
May 30, 2015 at 2:08 pm -
Hi Guys We are considering changing our Lucene indexer / search architecture from 2 separate JVMs to a single one to benefit from the very latest index views NRT readers provide. In the past we ...
Kiwi clive
May 27, 2015 at 11:21 am
May 27, 2015 at 9:13 pm -
Hi all, I was going to through https://lucene.apache.org/core/5_1_0/MIGRATE.html It is said that the Directory and LockFactory are now refactored. We have implemented custom directory implementation ...
Gimantha Bandara
May 21, 2015 at 1:12 pm
May 22, 2015 at 11:59 am -
Hi, A question about API changes in Lucene 5. The method "DirectoryReader.open(commit, termInfosIndexDivisor)" has been removed at Lucene 5.0. This functionality was completely removed? Backgrounds ...
Tomoko Uchida
May 14, 2015 at 6:26 am
May 14, 2015 at 3:52 pm -
Hi All, We have a Lucene 3.6-based index set which is quite large and currently in use. What will be the upgrade path to (a) 4.x or (b) 5.x? With respect to the data migration, etc. What are the ...
Sandeep Khanzode
May 28, 2015 at 5:07 am
May 31, 2015 at 4:50 pm -
Hi Java-user mailing list, Please add me to the ContributorsGroup wiki page so I can edit the wiki wikiuser: leehinman Thanks! ;; Lee ...
Lee Hinman
May 28, 2015 at 10:26 pm
May 28, 2015 at 10:42 pm -
Hi all. Some of our indexes out there in the wild were created on 2.x. We're about to try updating lucene to 5.x, so we have to update them to at least 4.x. Firstly, has anyone already put together a ...
Trejkaz
May 12, 2015 at 6:53 am
May 27, 2015 at 1:27 am -
Hi, I’m trying to make a cross document MUST with query time join. What I need is return a group if one of its documents matches a condition, and one of another of its doc matches another condition ...
Eduardo Manrique
May 22, 2015 at 12:58 pm
May 24, 2015 at 5:26 pm -
Hello, is it possible to add a payload within the facet in the taxonomy index ? Thank you -- https://s17t.net <span class="m_body_email_addr" title="e60cb9118a9126b651db00dc4aec73dc" ...
Federico Tolomei
May 12, 2015 at 8:16 am
May 12, 2015 at 12:50 pm -
Hello, I have a call to writer.deleteDocuments(term); that hangs if the document is not in the index. It works fine if the document is in the index. Is this the expected behavior? If so, is there a ...
Fielder, Todd Patrick
May 11, 2015 at 11:22 pm
May 11, 2015 at 11:33 pm -
I am having trouble getting collection probabilities for a term to show up in a CustomScoreQuery/CustomScoreProvider. Basically, I am trying to add a per-document weight that amounts to the sum (for ...
Stephen Wu
May 2, 2015 at 8:35 pm
May 2, 2015 at 8:35 pm -
Dear Real-time Java Community, Remi and I are pleased to announce the release of the JTRES 2015 call for papers (below) and the JTRES 2015 website: http://jtres2015.univ-mlv.fr. JTRES will be held in ...
Lukasz Ziarek
May 27, 2015 at 8:25 pm
May 27, 2015 at 8:25 pm -
Hi, I am facing an issue with phrase query having special character (like &, dot, comma, : etc). I have tried following queries and although there were data, 0 result returned. 1) Search Query -- ...
Patel mrugesh
May 27, 2015 at 1:10 pm
May 27, 2015 at 1:10 pm -
Hi, What FS block size to use? I have an RAID-5 of SSD drives currently configured with a 128KB block size. Can I expect better indexing/query time performance with a smaller block size (say 8K)? ...
Gili Nachum
May 26, 2015 at 6:10 am
May 26, 2015 at 6:10 am -
Hi all. I found a bug where Tokenizer seems to be complaining about close() not being called, but on further investigation it looks like we're not the ones who are opening it, but rather it's being ...
Trejkaz
May 26, 2015 at 1:45 am
May 26, 2015 at 1:45 am -
Hi, I have a number of similarity implementation that extends SimilarityBase. I need to learn which term I am scoring inside the method : abstract float score(BasicStats stats, float freq, float ...
Ahmet Arslan
May 23, 2015 at 3:34 pm
May 23, 2015 at 3:34 pm -
Hello everyone, My task at hand is to compute the pairwise cosine similarity between a list of documents. I first index all the documents with DOCS_AND_FREQS option, then I construct a query from ...
Fotis P
May 21, 2015 at 2:50 pm
May 21, 2015 at 2:50 pm -
Hello All, I am traversing posting list of a single term by following code. (not sure if there is a better way) Now I need to handle/aggregate multiple terms. Traverse intersection of multiple ...
Ahmet Arslan
May 8, 2015 at 3:53 pm
May 8, 2015 at 3:53 pm -
Hello, Is it possible to get matched docIds for each facet value. As to current we only get count. Let me know the classes internal to Lucene which i should look at just in case if its not exposed in ...
Jigar Shah
May 8, 2015 at 3:41 pm
May 8, 2015 at 3:41 pm -
Hey all The Javadoc for the getDistance method of lucene 5.1.0 says. "Returns a float between 0 and 1 based on how similar the specified strings are to one another. Returning a value of 1 means the ...
Ferosh Jacob
May 7, 2015 at 2:41 pm
May 7, 2015 at 2:41 pm -
Hi all I am trying to use Apache Lucene for Ngram Separator. Reader reader = new StringReader("This is a test string"); NGramTokenizer gramTokenizer = new NGramTokenizer(reader, 1, 3) ...
Priyanka Tufchi
May 5, 2015 at 12:21 pm
May 5, 2015 at 12:21 pm -
Hello! I'm using Apache Lucene 5.0.0 and I have the problem that after some time/some "transactions" the index seems to become corrupt and I get the following exception: at ...
Patrick Herber
May 5, 2015 at 6:57 am
May 5, 2015 at 6:57 am -
Hi, In my application I have multiple indices which are not related and are not similar. The fields they contain are different and the number of documents stored in each index is also different. I ...
Anand Bhagwat
May 4, 2015 at 1:00 pm
May 4, 2015 at 1:00 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 28 |
posts | 70 |
users | 34 |
website | lucene.apache.org |
34 users for May 2015
Archives
- June 2016 (77)
- May 2016 (96)
- April 2016 (116)
- March 2016 (67)
- February 2016 (76)
- January 2016 (78)
- December 2015 (85)
- November 2015 (114)
- October 2015 (95)
- September 2015 (123)
- August 2015 (98)
- July 2015 (107)
- June 2015 (85)
- May 2015 (70)
- April 2015 (103)
- March 2015 (130)
- February 2015 (183)
- January 2015 (111)
- December 2014 (147)
- November 2014 (117)
- October 2014 (118)
- September 2014 (148)
- August 2014 (206)
- July 2014 (161)
- June 2014 (282)
- May 2014 (162)
- April 2014 (152)
- March 2014 (152)
- February 2014 (219)
- January 2014 (147)
- December 2013 (88)
- November 2013 (176)
- October 2013 (220)
- September 2013 (232)
- August 2013 (257)
- July 2013 (320)
- June 2013 (223)
- May 2013 (228)
- April 2013 (233)
- March 2013 (309)
- February 2013 (224)
- January 2013 (425)
- December 2012 (246)
- November 2012 (301)
- October 2012 (200)
- September 2012 (116)
- August 2012 (229)
- July 2012 (302)
- June 2012 (203)
- May 2012 (253)
- April 2012 (172)
- March 2012 (245)
- February 2012 (347)
- January 2012 (302)
- December 2011 (191)
- November 2011 (246)
- October 2011 (251)
- September 2011 (230)
- August 2011 (197)
- July 2011 (254)
- June 2011 (374)
- May 2011 (310)
- April 2011 (310)
- March 2011 (422)
- February 2011 (227)
- January 2011 (365)
- December 2010 (239)
- November 2010 (322)
- October 2010 (295)
- September 2010 (192)
- August 2010 (295)
- July 2010 (296)
- June 2010 (292)
- May 2010 (299)
- April 2010 (359)
- March 2010 (399)
- February 2010 (448)
- January 2010 (467)
- December 2009 (478)
- November 2009 (699)
- October 2009 (609)
- September 2009 (450)
- August 2009 (465)
- July 2009 (582)
- June 2009 (470)
- May 2009 (513)
- April 2009 (609)
- March 2009 (684)
- February 2009 (389)
- January 2009 (356)
- December 2008 (589)
- November 2008 (480)
- October 2008 (508)
- September 2008 (604)
- August 2008 (582)
- July 2008 (522)
- June 2008 (444)
- May 2008 (424)
- April 2008 (453)
- March 2008 (515)
- February 2008 (560)
- January 2008 (619)
- December 2007 (405)
- November 2007 (471)
- October 2007 (392)
- September 2007 (337)
- August 2007 (568)
- July 2007 (584)
- June 2007 (496)
- May 2007 (623)
- April 2007 (542)
- March 2007 (765)
- February 2007 (669)
- January 2007 (602)
- December 2006 (469)
- November 2006 (498)
- October 2006 (598)
- September 2006 (572)
- August 2006 (668)
- July 2006 (692)
- June 2006 (695)
- May 2006 (609)
- April 2006 (497)
- March 2006 (695)
- February 2006 (541)
- January 2006 (544)
- December 2005 (368)
- November 2005 (529)
- October 2005 (565)
- September 2005 (526)
- August 2005 (493)
- July 2005 (409)
- June 2005 (570)
- May 2005 (363)
- April 2005 (464)
- March 2005 (419)
- February 2005 (600)
- January 2005 (636)
- December 2004 (633)
- November 2004 (597)
- October 2004 (460)
- September 2004 (495)
- August 2004 (450)
- July 2004 (552)
- June 2004 (491)
- May 2004 (355)
- April 2004 (362)
- March 2004 (486)
- February 2004 (375)
- January 2004 (285)
- December 2003 (377)
- November 2003 (452)
- October 2003 (217)
- September 2003 (291)
- August 2003 (186)
- July 2003 (226)
- June 2003 (218)
- May 2003 (334)
- April 2003 (256)
- March 2003 (276)
- February 2003 (228)
- January 2003 (190)
- December 2002 (192)
- November 2002 (365)
- October 2002 (280)
- September 2002 (179)
- August 2002 (117)
- July 2002 (203)
- June 2002 (229)
- May 2002 (248)
- April 2002 (282)
- March 2002 (228)
- February 2002 (252)
- January 2002 (134)
- December 2001 (146)
- November 2001 (327)
- October 2001 (177)
- September 2001 (1)