Search Discussions
-
Hi all, I am going to build a Searcher pooling. if any one has experience on this, I would be glad to hear his/her recommendation and suggestion. I want to know what issues I should be apply. ...
Mohammad Norouzi
Feb 22, 2007 at 8:10 am
Mar 8, 2007 at 5:02 am -
I have discovered a serious bug in QueryParser. The following query: contents:sales && contents:marketing || contents:industrial && contents:sales is parsed as: +contents:sales +contents:marketing ...
Peter Keegan
Feb 1, 2007 at 8:58 pm
Feb 2, 2007 at 2:35 pm -
Hi guys, I have been diving into the FieldCacheImpl code. I have seen sth on actual version: Revision 488908 - (view) (download) (annotate) - [select for diffs] Modified Wed Dec 20 03:47:09 2006 UTC ...
Poeta simbolista
Feb 14, 2007 at 5:48 pm
Feb 16, 2007 at 1:43 am -
Hi I have Java Swing application with a table, I was considering using Lucene to index the data in the table. One task Id like to do is for the user to select 'Find Duplicate records for Column X', ...
Paul Taylor
Feb 23, 2007 at 3:17 pm
Feb 27, 2007 at 10:06 am -
Hi, I have a field to which I add several bits of information, e.g. doc.add(new Field("x", "first bit")); doc.add(new Field("x", "second part")); doc.add(new Field("x", "third section")); I am using ...
Antony Bowesman
Feb 21, 2007 at 11:44 am
Feb 23, 2007 at 1:26 am -
I'm indexing books, with a significant amount of overhead in each document and a LOT of OCR data. I'm indexing over 20,000 books and the index size is 8G. So I decided to play around with not storing ...
Erick Erickson
Feb 14, 2007 at 2:03 pm
Feb 14, 2007 at 6:29 pm -
Chris has given an example of how to perform categorisation of lucene searches: String[] mfgs = ...; String query = "+category:cameras +price:[0 to 10]"; Query q = QueryParser.parse(query); Hits ...
Kainth, Sachin
Feb 8, 2007 at 5:37 pm
Feb 9, 2007 at 3:33 pm -
I know this has been asked before, but I'd like to ask once more for peace of mind. Is there a way to do single field inserts/updates without deleing and reinserting a document? If the answer is no, ...
Arnone, Anthony
Feb 27, 2007 at 6:18 pm
Mar 1, 2007 at 9:11 pm -
I have an index where I'm storing the primary key of my database record as an unindexed field. Nightly I want to update my search index with any database changes / additions. I don't really see an ...
No spam
Feb 21, 2007 at 10:43 pm
Mar 10, 2007 at 4:21 pm -
For my problem there seems to exist a lucence Bug (http://issues.apache.org/jira/browse/LUCENE-167) but also it seems that it's solved in the Lucene integration on site http://www.lucenebook.com.
Karimi-Tabatabaie Jamal
Feb 16, 2007 at 6:52 pm
Feb 19, 2007 at 6:05 pm -
HI I would like to make a query and take out those with null values in a specific field. How to? Thanks -- View this message in context: ...
Poeta simbolista
Feb 7, 2007 at 12:50 pm
Feb 9, 2007 at 3:14 am -
I am using Lucene in a little bit weird way, instead of searching all the documents for a specific query, I am searching a single document for many specific queries. On a single document of 10k ...
Ruslan Sivak
Feb 27, 2007 at 11:27 pm
Feb 28, 2007 at 9:31 pm -
Hello In our application we have to index the database tables, there is two way to make this 1- index each table in a separate directory and then keep all relation in order to get right result. in ...
Mohammad Norouzi
Feb 22, 2007 at 8:17 am
Feb 26, 2007 at 1:54 pm -
Hi, I have no experience with Lucene and I'm trying to collect some information in order to determine what solution is best for me. I need to index ~50M documents (starting with 10M), the size of ...
Shai deljo
Feb 20, 2007 at 10:51 am
Feb 22, 2007 at 10:40 pm -
Hi all, How do I search for a term in all fields of a document? Cheers Sachin This email and any attached files are confidential and copyright protected. If you are not the addressee, any ...
Kainth, Sachin
Feb 20, 2007 at 12:30 pm
Feb 21, 2007 at 9:25 pm -
We have search (no update) web app on 2 dual core CPU machine (2x Dual Core AMD Opteron(tm) Processor 280) with 8G of RAM. Lucene 2.0 is used. My index is optimized and non compound, 9G holding 6.5 M ...
Dmitri
Feb 18, 2007 at 9:53 pm
Feb 19, 2007 at 3:41 pm -
Hi All, "When i searched for "AND", "OR", "NOT" as query, it gives me the following Exception" Exception in thread "main" org.apache.lucene.queryParser.ParseException: Encountered "<EOF " at line 1, ...
Saroja Kanta Maharana
Feb 13, 2007 at 11:42 am
Feb 13, 2007 at 3:19 pm -
I've been asked if it's possible to search on dates within a document. The high level goal is to index a number of documents which mention specific dates, and then perform a broad query for documents ...
Walt Stoneburner
Feb 27, 2007 at 5:59 pm
Feb 28, 2007 at 11:56 pm -
I can't get the benchmarker to start from ant. I'm running the current SVN snapshot. Lucene isn't found in the classpath. But where should I place my lucene.jar? I see it beeing referenced to in the ...
Karl wettin
Feb 12, 2007 at 9:53 pm
Feb 27, 2007 at 6:00 pm -
6
Caching
Hi all, I have read that Lucene performs caching of search results so that if you perform the same search in succession the second result should be returned faster. What I wanted to ask is whether ...Kainth, Sachin
Feb 14, 2007 at 1:58 pm
Feb 14, 2007 at 3:08 pm -
Hi all, I have increased the merge factor from 10 to 50. I thought the indexing performance will be better. But the time taken taken to index is more than the time taken for the merge factor of 10. ...
Sairaj Sunil
Feb 9, 2007 at 4:15 pm
Feb 10, 2007 at 5:30 pm -
This email and any attached files are confidential and copyright protected. If you are not the addressee, any dissemination of this communication is strictly prohibited. Unless otherwise expressly ...
Kainth, Sachin
Feb 8, 2007 at 1:46 pm
Feb 8, 2007 at 7:53 pm -
Hi all, I wanted to know if it is possible to store some fields in an index with one analyzers and other fields with another analyzer? Cheers Sachin This email and any attached files are confidential ...
Kainth, Sachin
Feb 8, 2007 at 5:26 pm
Feb 8, 2007 at 6:33 pm -
Dear All, I was indexing 660,000 XML documents.The unoptimized index file was successfully built in about 17 hrs...This index file resides in my D drive which has the free space 38 Gb.This space is ...
Maureen tanuwidjaja
Feb 1, 2007 at 2:22 pm
Feb 5, 2007 at 12:13 pm -
The old highlighter code used to highlight found terms in any field (too broad). The new highlighter lets one specify a field when highlighting, but it highlights that field only (too narrow). In my ...
Renaud Waldura
Feb 13, 2007 at 10:59 pm
Mar 29, 2007 at 6:28 pm -
I am doing what I should not, i.e. iterating the Hits after a search to collect two ID fields from each document in Hits to pass back to the searcher along with the score. The index is approx 10-15 ...
Antony Bowesman
Feb 27, 2007 at 9:14 pm
Mar 1, 2007 at 9:35 am -
Hi, Is it possible to scale lucene indexing like 2000/3000 documents per second? I need to index 10 fields each with 20 bytes long. I should be able to search by just giving any of the field values ...
Saravana
Feb 27, 2007 at 2:23 pm
Mar 1, 2007 at 8:28 am -
I have a very small index of 500 docs with an index size of < 100k on disk so far. I want to whip through the docs and get only the ones within a lat/lon within radius. I realize this isn't how ...
No spam
Feb 27, 2007 at 7:14 pm
Feb 28, 2007 at 7:25 pm -
Hi, According to the FAQ, by indexing the title of the document and performing a search against the shorter field will automatically give it a higher weight than matches against the document content. ...
Phillip Rhodes
Feb 27, 2007 at 6:00 pm
Feb 28, 2007 at 7:12 pm -
Hi! I'm writing a java program that uses Lucene 1.4.3 to index and create a vector file of words found in Text Files. The purpose is for text mining. I created a Java .Jar file from my program and my ...
Ridzwan Aminuddin
Feb 22, 2007 at 8:20 am
Feb 27, 2007 at 1:14 am -
Using QueryParser to parse *tex* seems to create a PrefixQuery rather than WildcardQuery due to the trailing *, rather than Wildcard because of the other leading *. As a result, this does not match, ...
Antony Bowesman
Feb 22, 2007 at 4:37 am
Feb 25, 2007 at 6:48 am -
Hi all, Just wondering how one would perform index maintainance. I know how to add new documents: writer = new IndexWriter(IndexDirectory, new PorterAnalyzer(), false); (incidently, I wrote ...
Kainth, Sachin
Feb 23, 2007 at 2:34 pm
Feb 25, 2007 at 4:27 am -
Hello, I was wondering if Lucene provides any mechanism which helps in pagination. In other words is there a way to return the first 10 of 500 results and then the next 10 and so on. Cheers This ...
Kainth, Sachin
Feb 21, 2007 at 10:48 am
Feb 22, 2007 at 10:03 pm -
Hi, I need to merge indexes, if I want the user to see the changes (the merged indexes), I heard I need to close the index reader and re-open it again. But I will need to do this avery x minutes for ...
DECAFFMEYER MATHIEU
Feb 22, 2007 at 8:30 am
Feb 22, 2007 at 7:46 pm -
Is there a Lucene 2.1 compatible version of Luke hanging around that I've overlooked or do I need to compile it myself? The change notes for Lucene 2.1 indicate index format changes, and, sure ...
Erick Erickson
Feb 20, 2007 at 2:01 pm
Feb 20, 2007 at 2:45 pm -
Hi all, I just wondering wheter is it sensible and possible if I have 660,000 documents to be indexed,I set the merge factor to 660,000 instead of the default value 10 (...and this means no merge ...
Maureen tanuwidjaja
Feb 11, 2007 at 3:44 pm
Feb 11, 2007 at 8:14 pm -
Is it my imagination or does lucene produce an error if you present it with an empty string to search for? This email and any attached files are confidential and copyright protected. If you are not ...
Kainth, Sachin
Feb 8, 2007 at 5:47 pm
Feb 9, 2007 at 10:55 am -
Hello, Does anyone know why this does not work? The fileDir is of the class File and points to an empty temp directory. I tried switching true and false import org.apache.lucene.index.IndexWriter; ...
E J W Vanbloem
Feb 2, 2007 at 3:38 pm
Feb 2, 2007 at 4:16 pm -
Hello, As you probably know, the HitCollector-based search API is not meant to work remotely, because it will generate a RPC-callback for every non-zero score. There is another problem with ...
Oramas martín
Feb 25, 2007 at 11:56 pm
Mar 11, 2007 at 9:16 am -
Hi, I want to execute parallel search over several machines. But ParallelSearcher doesn't look perfect. It creates threads for and spawns many requests to the underlying Searchables (over a network) ...
Dmitri
Feb 27, 2007 at 2:13 pm
Mar 1, 2007 at 12:39 pm -
Hi all, I have an index in which dates are represented as ranges of two integers (there are two fields one foreach integer). The two integers are years. AD dates are represented as a positive integer ...
Kainth, Sachin
Feb 26, 2007 at 1:38 pm
Feb 26, 2007 at 9:36 pm -
I have a requirement to support filtering search results by first letter. This is relatively simple by adding a field to each index that represents the first letter for that relevant index and then ...
Paul Sundling (Webdaddy)
Feb 23, 2007 at 8:26 pm
Feb 26, 2007 at 8:21 pm -
I'm extracting text from Word using TextMining.org extractors - it works better than POI because it extracts Word 6/95 as well as 97-2002, which POI cannot do. However, I'm trying to find out about ...
Antony Bowesman
Feb 23, 2007 at 5:05 am
Feb 25, 2007 at 7:23 am -
Hi all, A question about efficiency and the internal workings of the Hits class. When we make a call to IndexSearcher's search method thus: Hits hits = searcher.Search(query); Do we actually, ...
Kainth, Sachin
Feb 21, 2007 at 4:11 pm
Feb 22, 2007 at 1:23 pm -
Hi all, I'm so sorry if this question already answered before in this list, but I already search the list, and I couldn't find the answer. This is what I want to do : When the user type in the query, ...
Csahat
Feb 7, 2007 at 2:27 pm
Feb 19, 2007 at 4:10 pm -
hi all my name is ashwin i am trying to compile this program but its not getting compiled the error msg follows the code which is below import java.io.File; import java.io.FileReader; import ...
Ashwin kumar
Feb 13, 2007 at 5:35 am
Feb 13, 2007 at 8:40 am -
I have two applications that share some of the same Lucene Indexes. I recently upgrade the Lucene-core.jar from v2.0 to a nightly build (Feb. 04, 2006 - I was looking for the IndexWriter class that ...
Van Nguyen
Feb 13, 2007 at 12:56 am
Feb 13, 2007 at 1:55 am -
Hi All, I got this error when i tried to decrypt a pdf document encrypted by com.lowagie.text.pdf.PdfEncryptor class, with a null password: "java.lang.NoClassDefFoundError: ...
Alixandre Santana
Feb 12, 2007 at 6:55 pm
Feb 12, 2007 at 10:26 pm -
Hello all, When running the example in the solr release has anyone come up with the following issue when going to http://localhost:8983/solr/admin/: HTTP ERROR: 500 Unable to compile class for JSP ...
Kainth, Sachin
Feb 12, 2007 at 4:26 pm
Feb 12, 2007 at 7:54 pm -
My work is to index keywords with a document. In my case, the document is made up with HTML tags which i don't want to index them. For example: Input Document: <div id="tp-wrapper" <span ...
Joe Tang
Feb 8, 2007 at 1:05 am
Feb 8, 2007 at 9:12 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 160 |
posts | 669 |
users | 146 |
website | lucene.apache.org |
146 users for February 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)