Search Discussions
-
I've got a DB of about 20000 pages which I thought I'd update to Lucene 2.2. I removed the old index (2.0 based) completely, and started re-indexing all the documents. I do this in stages, of about ...
Bill Janssen
Nov 28, 2007 at 5:42 pm
Dec 18, 2007 at 4:16 pm -
Using solr, we have been running an indexing process for a while and when I checked on it today, it spits out an error: java.lang.RuntimeException: java.io.FileNotFoundException: ...
Ryan McKinley
Nov 10, 2007 at 9:06 pm
Nov 13, 2007 at 7:03 pm -
Hi. I have a situation where I'm searching amongst some 100K feeds and only want one result per site in return. I have developed a really simple method of grouping which just scrolls through the ...
Marcus Herou
Nov 5, 2007 at 5:58 am
Aug 2, 2009 at 8:56 am -
I have a problem of performance when I need group the result do search I have the code below: for (int i = 0; i < hits.length(); i++) { doc = hits.doc(i); obj1 = ...
Haroldo Nascimento
Nov 18, 2007 at 9:32 pm
Nov 19, 2007 at 10:41 pm -
Hi everyone, I am trying to obtain the score for each document in the index relative to a given query. For example, if I have the query "search file", I am trying to get the list of all documents in ...
HAIDUC SONIA
Nov 19, 2007 at 4:06 pm
Nov 20, 2007 at 11:10 pm -
In Lucene 2.x, in method Lock#obtain(long lockWaitTimeout) I see the following line: int maxSleepCount = (int)(lockWaitTimeout / LOCK_POLL_INTERVAL); Since I wanted to set the lock timeout to the ...
Nikolay Diakov
Nov 7, 2007 at 1:22 pm
Nov 8, 2007 at 11:33 am -
We've run into a blocking problem with our use of Lucene: we get OutOfMemoryError when performing a one-term search in our index. The search, if completed, should give only a few thousand hits, but ...
Lars Clausen
Nov 13, 2007 at 2:38 pm
Jan 25, 2008 at 10:00 pm -
Hi, Optimizing my index of 1.5 million documents takes days and days. I have a collection of 10 million documents that I am trying to index with Lucene. I've divided the collection into chunks of ...
Barry Forrest
Nov 11, 2007 at 11:17 pm
Nov 12, 2007 at 10:49 pm -
Our document contains a total of 23 fields in one document and we STORE all of them in lucene index. We have recently had some performance issues and our analysis has shown the bottleneck to be ...
Kumarlimbu
Nov 20, 2007 at 11:30 am
Nov 22, 2007 at 4:51 pm -
Hi All, I'll explain what I'm working on, and then I'll ask my two questions. I'm working on the issue https://issues.apache.org/jira/browse/SOLR-380 which is a feature request that allows one to ...
Tricia Williams
Nov 17, 2007 at 3:37 am
Nov 20, 2007 at 6:39 pm -
I have posted before about a problem with TermDocs.skipTo () but never managed to reproduce it. I have now got it to fail using the following program, please can someone try it and see if they get ...
Mike Streeton
Nov 9, 2007 at 10:52 am
Nov 14, 2007 at 1:27 pm -
Hi I have indexed this html document =============z1======================== <html <body <h1 zo zo zo zo zo zo zo zo zo zo zo zo </h1 <br <h1 zo zo zo zo zo zo zo zo zo zo zo zo </h1 <br <h1 zo zo zo ...
Jamal jamalator
Nov 1, 2007 at 1:24 am
Nov 2, 2007 at 5:26 pm -
Hi! I search an 1.5 gig index and fuzzy queries are really slow; something like avg. ~500ms (IndexSearcher.search(Query, HitCollector)). When performing exact queries I archieve response times <25ms. ...
Timo Nentwig
Nov 24, 2007 at 4:36 pm
Nov 26, 2007 at 6:36 pm -
I was wondering about methods for analyzing various languages and that what I understand (please correct me if I wrong): 1. To analyze non English language I need to use specific analyzer. Link to ...
Alebu
Nov 18, 2007 at 5:09 pm
Nov 26, 2007 at 4:31 pm -
Hallo *; I went through some examples of the Lucene in Action book to find that the API has changed and then applied the corrections with the help of this forum. One runtime problem however remains. ...
Flateric
Nov 18, 2007 at 10:16 pm
Nov 20, 2007 at 10:53 am -
Hi! I do have different document types (Books, Magazines, Author whatever) in the index and a FieldSelector is document type specific (for Books LOAD isbn and title for Author name, ...). The ...
Timo Nentwig
Nov 30, 2007 at 11:28 am
Dec 5, 2007 at 7:22 pm -
Folks I have some additional textual data that is user specific, basically annotations about documents. I would like to be able to do **combined** searches, looking for some words in the document and ...
Lucene user
Nov 26, 2007 at 10:34 pm
Nov 28, 2007 at 3:23 am -
Boosting a one term query does not have an affect on the score. For example: apple Has the same score as: apple^3 But repeating the term will up the score apple apple apple I expected the score to go ...
Java_user_
Nov 29, 2007 at 9:34 pm
Dec 13, 2007 at 12:41 am -
Hi there. I am a new Lucene user and I have been searching the group archives but couldn't solve the problem. I have just joined a project that uses Lucene. We use the StandardAnalyzer for indexing ...
Ruchi Thakur
Nov 30, 2007 at 6:53 pm
Dec 3, 2007 at 1:19 pm -
This is exactly right. That final true (which is the "create" arg) will clear out the index. This looks right to me! Mike --------------------------------------------------------------------- To ...
Michael McCandless
Nov 25, 2007 at 9:52 am
Nov 26, 2007 at 10:16 am -
Is there a problem with the term frequency count (tf) and the IndexSearcher.explain method? I'm searching the following string (fieldname is description) for the term 'salesman' and receive the ...
John Griffin
Nov 23, 2007 at 11:23 pm
Nov 25, 2007 at 3:00 am -
Hi, I want to realize a search that finds the exact phrase I provide. If the word I am searching for is "green tree", I do NOT want to get results for "green" or "tree", but only results for "green ...
Rapthor
Nov 22, 2007 at 11:07 am
Nov 24, 2007 at 3:13 pm -
Hello all, I don't know if this is a somehow naive question, but here we go: Does Lucene support index by sections? Like having a text document with three sections divided by XML tags indexed in a ...
Cláudio Fernandes
Nov 13, 2007 at 12:22 pm
Nov 13, 2007 at 5:10 pm -
Hi, We are having an issue while indexing Chinese Documents in Lucene. Some background first: Since CJK languages doesn't have space between words, we first have to determine the words from ...
Cedric Ho
Nov 9, 2007 at 3:00 am
Nov 11, 2007 at 2:45 am -
I've been looking at the highlighter examples. All of them seem to deal with fragments. I need to highlight an entire document as it is displayed (i.e., highlight all of the keywords in it). Can ...
Scott Smith
Nov 28, 2007 at 7:13 am
Nov 29, 2007 at 5:01 am -
Hi Guys, I made a problem in implement some extra scores besides the VSM model. My works entails with re-ranking the returned documents from the extra scores like page quality or page property ( good ...
Zhou Qi
Nov 15, 2007 at 3:15 am
Nov 17, 2007 at 5:25 am -
Is anyone on this list using the gdata server? I have been trying to get it working and have been running into some problems.
Lyth, Christopher [USA]
Nov 15, 2007 at 10:32 pm
Nov 16, 2007 at 9:09 am -
Hi: I want to build a custom termfreq vector an add it to the field to store it to the index. I want to use lucene for research, I'm thinking to make some experimentation so I need to store a term ...
Ariel
Nov 6, 2007 at 10:28 pm
Nov 10, 2007 at 4:22 am -
Hi, I tried to use the CheckIndex tool (the latest svn code) and I was surprised to notice that all my indexes from production (around 30) are corrupt. This is highly unlikely because they were ...
Bogdan Ghidireac
Nov 27, 2007 at 2:44 pm
Nov 28, 2007 at 1:54 pm -
Hi there, I am using currently a FSDirectory to build my index. The reason for using a file system based index is that a full index rebuild takes around 30 minutes and I want to keep a persistent ...
Hardy Ferentschik
Nov 27, 2007 at 6:55 am
Nov 27, 2007 at 3:10 pm -
Hi, I have a question ? Lucene offers a mixing structure of storage of index, that is, first do search in memoria (ARMDirectory) and in case of not found do search in index file automatically ? For ...
Haroldo Nascimento
Nov 24, 2007 at 3:26 pm
Nov 26, 2007 at 6:56 pm -
Hi: What is the right way of setting customized position value on a token at indexing time. Thanks -John --------------------------------------------------------------------- To unsubscribe, e-mail: ...
John Wang
Nov 19, 2007 at 9:14 pm
Nov 20, 2007 at 3:12 am -
Hi All, Can some explain to me this line. I encounter this line while setting up Lucene... Connect to the top-level of your Lucene installation Kindly guide me in this regard. Liaqat Ali ...
Liaqat Ali
Nov 19, 2007 at 10:43 am
Nov 19, 2007 at 1:56 pm -
Hi there, Currently I am trying to get synonyms to work. I have gotten as far as injecting them into the index as Token.type SYNONYM. Lucene then finds the original word and synonym and points to the ...
Matthijs Bierman
Nov 12, 2007 at 2:55 pm
Nov 15, 2007 at 2:13 pm -
I have briefly reviewed the SimpleFSLock of Lucene 2.1 and 2.2. I see that the lock release mechanism does not check the return value of delete: public void release() { lockFile.delete(); } On most ...
Nikolay Diakov
Nov 9, 2007 at 3:18 pm
Nov 10, 2007 at 2:53 pm -
Hi , We have been developing an enterprise logging service at the Wachovia bank. The logs (Busines, application, error) for all the bank related applications are consolidated at one single location ...
Sandeep Mahendru
Nov 4, 2007 at 6:49 pm
Nov 6, 2007 at 2:36 am -
Hi, I have an application using Lucene 2.2.0 that opens an IndexSearcher only once to optimize performance, because opening the index is a heavy operation. My question is, if I modify the index with ...
Enrique Lamas
Nov 5, 2007 at 1:46 pm
Dec 10, 2007 at 9:34 am -
Hi, I faced some problem with prefix query search when the prefix text contains a hyphen. i'm using lucene-2.1. Search query is like this ttl:co-operative it returns more than 50 results, but if i ...
Reeja
Nov 27, 2007 at 7:48 am
Nov 30, 2007 at 8:54 am -
Hi all, I want to compute the co-occurence frequency between a word and a phrase( this phrase contains some words, and the words in it should be successive and in order). It's like an NEAR operation ...
Bigdoginuk
Nov 28, 2007 at 11:42 am
Nov 29, 2007 at 2:21 pm -
Hi all, I am having a problem with Lucene 2.2.0 with regard to the contents of the Explanation objects after a PhraseQuery search. I indexed two documents doc1 and doc2 and then issue an OR Boolean ...
Ng Vinny
Nov 27, 2007 at 8:55 pm
Nov 27, 2007 at 10:23 pm -
Hi I show the results of searches as two criterios of sorting ("priority" and to after "score") of each document. I need present the result with same score of ramdomize form. For example: *Result of ...
Haroldo Nascimento
Nov 26, 2007 at 11:32 pm
Nov 27, 2007 at 3:50 pm -
Is their such a thing as a jdbc driver for Lucene that allows you to run SQL to select from an index. Many Thanks Mike
Mike Streeton
Nov 26, 2007 at 9:13 am
Nov 26, 2007 at 4:40 pm -
How do I force the MultiFieldQueryParser to interpret a string like "dock boat" as "dock* boat*" and therefore use PrefixQuery instead of TemQuery? The customer wants always to search with <word * as ...
Anders Lybecker
Nov 21, 2007 at 7:16 pm
Nov 23, 2007 at 10:36 am -
Hi, I am willing to have a query parser which is fault tolerant. I have search over the archive, and I have found this : http://www.nabble.com/Error-tolerant-query-parsing-tf108987.html#a300382 I ...
Nicolas Lalevée
Nov 20, 2007 at 12:56 pm
Nov 22, 2007 at 9:49 pm -
Hi: It was interesting hearing about the need for real time indexing at the BirdsOfAFeather round table. We also needed to solve this problem. We took this approach: A large disk index that indexes ...
John Wang
Nov 16, 2007 at 6:44 am
Nov 16, 2007 at 12:06 pm -
Hi, I have a question regarding the way I got around the 'TooManyClauses' exception when using wild card queries ...
Hardy Ferentschik
Nov 12, 2007 at 9:45 pm
Nov 14, 2007 at 9:53 pm -
Hi Everyone, We are planning on scaling our current web server by adding a machine with similar specification. Both machine will be running lucene searches. What we plan to do is add a load balancer ...
Kumarlimbu
Nov 12, 2007 at 9:48 am
Nov 13, 2007 at 7:41 am -
Hello, I know this has gone around a bit but anyone had any success with pulling text from Office 2007 files? Any recommendations? Thanks, Michael ...
Michael Prichard
Nov 8, 2007 at 1:34 pm
Nov 8, 2007 at 3:44 pm -
i want to retrieve lucene search results from the web page and want to put them into oracle database through JDBC, and after some manipulation want to display results again after fetching it from ...
Sumittyagi
Nov 8, 2007 at 12:47 am
Nov 8, 2007 at 9:38 am -
Hi, I'm using IndexReader.deleteDocuments(Term) to delete documents in batches. I need the deleted count, so I cannot use IndexWriter.deleteDocuments(). What I want to do is delete documents based on ...
Antony Bowesman
Nov 26, 2007 at 5:53 am
Dec 4, 2007 at 9:18 am
Group Overview
group | java-user |
categories | lucene |
discussions | 102 |
posts | 471 |
users | 127 |
website | lucene.apache.org |
127 users for November 2007
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)