Search Discussions
-
Greetings Our app primarily uses Lucene for its intended purpose i.e. to search across large amounts of unstructured text. However, recently our requirement expanded to perform look-ups on specific ...
Jamie
Aug 8, 2015 at 12:33 pm
Aug 18, 2015 at 7:20 am -
Hey! :) It seems IndexWriter is not closing the descriptors of the removed files, see the log below. Thanks, Napoli [root@server01 log]# ls -l /proc/59491/fd | grep index l-wx------. 1 wildfly ...
Marcio Napoli
Aug 31, 2015 at 11:46 pm
Sep 1, 2015 at 1:02 pm -
What's the best way to index binary data in Lucene? I'm adding a Lucene index to a key value store, and I want to be able to delete documents based on a binary key. As far as I can tell the Lucene ...
Dan Smith
Aug 31, 2015 at 4:19 pm
Sep 1, 2015 at 3:26 pm -
Hi, I am new with Lucene Analyzer. I would like to get the full English tokens from SmartChineseAnalyzer. But I’m only getting stems. The following code has predefined the sentence in "testStr" ...
Wayne Xin
Aug 14, 2015 at 3:20 pm
Aug 15, 2015 at 12:10 am -
GreetingsNow, i'm using lucene , the version is 4.10.3. For some reason, i called forceMerge(1) in the end,and the final space of the Index Library is 15 GB. . But i found that forceMerge(1) cost a ...
丁儒
Aug 11, 2015 at 1:29 am
Aug 11, 2015 at 3:31 pm -
Hi, I was working with Lucene 5.2 and trying to index some document. I am using EnglishMinimalStemFilterFactory and I found that there is no option for keeping the original text as wel as analyzed ...
Vishnu Mishra
Aug 25, 2015 at 8:42 am
Aug 25, 2015 at 6:34 pm -
Are there any existing packages/examples or prior experience on using Learning to Rank (or Machine Learned Ranking) algorithms as custom Scorer/Ranker for lucene or solr ? How do people deploy ...
Ajinkya Kale
Aug 18, 2015 at 7:34 am
Aug 24, 2015 at 9:49 am -
Hi ,all Currenty i met a probleam with forceMerge(1). During forceMerging some of my machine spent too much time(10-20 hours for a index size of 15GB). By using some command like top, iostat, ...
Dr
Aug 20, 2015 at 11:49 am
Aug 21, 2015 at 8:59 am -
Dear Team, I am trying to build a search engine for fetching person info based on name or email Id. For this I have standard Analyzer & wildcard. If I enter case senstive query I get the result. but ...
Vardhaman narasagoudar
Aug 14, 2015 at 1:37 pm
Aug 14, 2015 at 2:48 pm -
Hi, we are migrating to Lucene 5 and we have a strange Exception that was not happening in Lucene 4. We are indexing in a pre-production environment and we move the index in the production ...
Nicola Buso
Aug 12, 2015 at 8:57 am
Aug 12, 2015 at 9:39 am -
Hi all. It's that time again. I'm trying to kill off our long-standing reliance on stable doc IDs. To that end, I am adding an additional field which contains the ID. But we use these IDs a lot and ...
Trejkaz
Aug 7, 2015 at 6:30 am
Aug 9, 2015 at 3:53 pm -
Hello everybody, I'm currently investigating methods for content-based image retrieval. In this context, I would like to index documents containing arrays of doubles and then perform an approximate ...
Estanislao Oubel
Aug 6, 2015 at 8:41 am
Aug 6, 2015 at 2:58 pm -
Hi experts, I'm trying to reproduce a bug from Lucene side, and found something. In latest codeline, 5.2.1, I modified test case HighlighterTest.testSimpleQueryTermScorerHighlighter a little to ...
Duke DAI
Aug 7, 2015 at 2:59 am
Aug 12, 2015 at 3:24 pm -
Hi all, Is there a way to achieve $subject? For example, consider the following SQL query. SELECT A, B, C SUM(D) as E FROM `table` WHERE time BETWEEN fromDate AND toDate *GROUP BY X,Y,Z* In the above ...
Gimantha Bandara
Aug 9, 2015 at 6:56 pm
Aug 10, 2015 at 12:57 pm -
Good day I am new to Lucene and have started to explore Lucene. I have questions: I have a book in which all the chapters are in pdf. I plan to index all these individual chapters in Lucene using ...
Nantha Kumar Subramaniam
Aug 7, 2015 at 7:37 am
Aug 7, 2015 at 3:36 pm -
Hi Guys, We have an index/query server that contains several thousand fairly hefty indexes. Each searcher is shared between many 'user-threads' and once opened we keep the searcher in a cache which ...
Kiwi clive
Aug 4, 2015 at 3:42 pm
Aug 5, 2015 at 10:18 am -
Hello, I am extending AnalyzingInfixSuggester for use with my suggester where I change the query to be a AND rather than an OR in the finishQuery(..) method. ie /** * Subclass can override this to ...
Greg Huber
Aug 24, 2015 at 9:02 am
Aug 28, 2015 at 5:35 pm -
Hi all, I was wondering about the number of threads to use for indexing. There is a setting: getMaxThreadStates() in the IndexWriterConfig that determines how many threads can write to the index ...
Rob Audenaerde
Aug 27, 2015 at 9:22 am
Aug 27, 2015 at 8:22 pm -
*Summary:* Lucene indexes appear to revert to some past state after an application restart. *Background:* We're running an enterprise application written in Java/Spring/Hibernate, deployed within ...
Loamy Hound
Aug 26, 2015 at 4:43 am
Aug 26, 2015 at 1:14 pm -
Hi, I'm using GeoPointDistanceQuery to filter the results near by a certain coordinate, but now I want to sort them by distance to that coordinate. I did not find anything in the github repository on ...
Pablo Mincz
Aug 24, 2015 at 8:35 pm
Aug 24, 2015 at 10:41 pm -
There is a MultiPhraseQuery we use which looks a bit like: MultiPhraseQuery query = new MultiPhraseQuery(); query.add(new Term[] { "first" }); query.add(new Term[] { "second1", "second2", ... }); The ...
Trejkaz
Aug 24, 2015 at 1:27 am
Aug 24, 2015 at 6:17 am -
Hi 1. as I understand Lucene is preparing the documents of the search result in a lazy fashion- using the docId in the ScoreDoc. What happens if the document "pointed" by the ScoreDoc is deleted ...
Yechiel Feffer
Aug 11, 2015 at 11:21 am
Aug 11, 2015 at 5:14 pm -
Hey everyone, I ran into an issue with the standard highlighter in 4.10.4 and was hoping that someone could help. I'm attempting to fragment a result based on a SpanNearQuery. If the words in the ...
Robert Alexander
Aug 6, 2015 at 5:26 pm
Aug 11, 2015 at 3:47 pm -
I can’t seem to detect any issues with the final custom analyzer declared in this code snippet (The one that attempts to use a PatternMatchingTokenizer and is initialized as sa), but it doesn’t seem ...
Bauer, Herbert S. (Scott)
Aug 7, 2015 at 6:57 pm
Aug 10, 2015 at 6:14 pm -
Hi, I'm looking a solution for the following format in solr/lucene 5.2.1 version: Text eg: "fast wi fi network is down". If using solr.StandardTokenizerFactory , I have the "Position " corresponding ...
Văn Châu
Aug 8, 2015 at 3:33 am
Aug 8, 2015 at 4:11 am -
I have recently done updates from Lucene 3.6 to 4.x and 4.x to 5.2. During this process, I noticed that the FST used by the Japanese analyser (AKA Kuromoji) was changing between releases. As I fear ...
Trejkaz
Aug 7, 2015 at 1:05 am
Aug 7, 2015 at 6:28 am -
Hi, I am trying to accomplish the below sequence of tasks and I am struck during the last step 1. Construct a BooleanQuery 2. Serialize BooleanQuery into a String 3. De-Serialize a String into a ...
Rahul challapalli
Aug 4, 2015 at 6:39 am
Aug 4, 2015 at 7:26 am -
Hi Lucene hackers. I was looking into lucene internals and came across ByteBlockPool class. In that class I see following static final array: public final static int[] LEVEL_SIZE_ARRAY = {5, 14, 20, ...
Elbek kamoliddinov
Aug 3, 2015 at 3:36 pm
Aug 3, 2015 at 4:25 pm -
Hi all, I want to take into account the absolute position of the term for the score calculation. I found many threads that deal with this issue, and the answer is often: "use SpanFirstQuery". The ...
Aurelien Mazoyer
Aug 31, 2015 at 12:32 pm
Aug 31, 2015 at 12:32 pm -
24 August 2015, Apache Lucene™ 5.3.0 available The Lucene PMC is pleased to announce the release of Apache Lucene 5.3.0 Apache Lucene is a high-performance, full-featured text search engine library ...
Noble Paul
Aug 25, 2015 at 2:47 am
Aug 25, 2015 at 2:47 am -
Hi all. In our framework, we don't know what index you're going to access in advance. We're also not a server-side application, so we don't have any convenient "end of request" point at which we can ...
Trejkaz
Aug 20, 2015 at 5:14 am
Aug 20, 2015 at 5:14 am -
First sorry for the post to here and the solr list, not sure where this is most appropriately asked but since there is no response there I figured I'd try here... I have what I believe to be a fairly ...
Jamie Johnson
Aug 14, 2015 at 10:19 am
Aug 14, 2015 at 10:19 am -
If I have a BooleanQuery which has two subqueries, one fast, one slow (fastQuery) && (slowQuery) Is there a way to tell Lucene to execute the fastQuery first so it can potentially skip the slowQuery ...
Markh
Aug 7, 2015 at 4:46 pm
Aug 7, 2015 at 4:46 pm -
Hi, I sometimes get FileNotFoundExceptions from the recovery of a core in my log. Does anyone know the reason for this? As I understand Solr this may (or should) not happen. Markus 2015-08-04 ...
Markus Heiden
Aug 4, 2015 at 2:04 pm
Aug 4, 2015 at 2:04 pm -
problem in getting data with spanTermQuery Lucene 5.2 i need and example of spantermquery and getsapns in lucene 5.2 thanks; --------------------------------------------------------------------- To ...
Behnam Khoshsafar
Aug 3, 2015 at 2:09 pm
Aug 3, 2015 at 2:09 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 35 |
posts | 98 |
users | 52 |
website | lucene.apache.org |
52 users for August 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)