Search Discussions
-
I am new to Lucene. Last night I started writing a small prototype indexer and search to become familiar with Lucene before I try to integrate it into my application. I believe I'm using Lucene ...
Caughey, Michael
Nov 22, 2002 at 2:55 pm
Nov 23, 2002 at 10:38 pm -
Hello, I have downloaded the required files of Lucene. I have no permissions to set the classpath in the server. My site is running on Apache Tomcat. I have been given one root directory and one ...
Uma Maheswar
Nov 13, 2002 at 7:14 am
Nov 16, 2002 at 8:24 pm -
i was hoping that someone could briefly review my current solution to a problem that we have encountered to see if anyone could suggest a possible alternative, because as it stands we have pushed ...
Alex Winston
Nov 8, 2002 at 7:24 pm
Nov 21, 2002 at 1:15 am -
Hello, [Rob Outar] No, you can't use this, because this field will be not indexed. That means, you can't search for it. Try out: Field.Keyword(String name, String value) or the public constructor: ...
Materna, Wolf-Dietrich (empolis B)
Nov 14, 2002 at 4:13 pm
Nov 18, 2002 at 8:13 pm -
I'm confused about how to use escape characters in Lucene. My Lucene configuration is 1.3-dev1 and I use the StandardAnalyzer and QueryParser. My documents have a field called 'path' with a value ...
Terry Steichen
Nov 26, 2002 at 3:59 pm
Nov 29, 2002 at 1:42 am -
Hi everyone, I have indexed my documents using a hierarchical indexing by adding a directory field that is indexible but non-tokenized as suggested in the FAQ. Now I want to do a search first using a ...
Aaron Galea
Nov 15, 2002 at 7:53 am
Nov 18, 2002 at 3:29 pm -
Hi everyone, I need to create a filter that extends a tokenfilter whose purpose is to generate some synonyms for words in the document using Wordnet. Well searching for synonyms using wordnet is not ...
Aaron Galea
Nov 10, 2002 at 12:14 pm
Nov 11, 2002 at 8:34 pm -
How does it affect overall performance, when I do not call optimize()? THX -g- -- To unsubscribe, e-mail: For additional commands, e-mail:
Leo Galambos
Nov 26, 2002 at 9:22 pm
Nov 27, 2002 at 7:27 pm -
Hello, Has anyone tested Lucene for scalability? I know that some peple have indices with 10M+ documents in it, but has anyone tried going beyond there, to 50M, 100M, 500M or more documents? (I know ...
Otis Gospodnetic
Nov 20, 2002 at 5:09 pm
Nov 21, 2002 at 2:35 pm -
i know there is this example, but it doesn´t work. First i compile XMLDocumentHandlerDOM.java and it works, when i want to compile IndexFiles.java the compiler says "cannot resolve symbol" at the ...
Richly, Gerhard
Nov 5, 2002 at 9:04 am
Nov 6, 2002 at 8:18 pm -
I've got a Text field (tokenized, indexed, stored) called 'path' which contains a string in the form of '1102\A3345-12RT.XML'. When I submit a query like "path:1102*" it works fine. But, when I try ...
Terry Steichen
Nov 25, 2002 at 4:55 pm
Nov 25, 2002 at 8:20 pm -
Hi, I was wondering if there is a possibility to get a list of all field names that have ever been used to index a document? This way I could filter out some special fields, like identity and such, ...
Christoph Kiehl
Nov 12, 2002 at 9:10 am
Nov 12, 2002 at 7:24 pm -
All, I have what I think is an interesting problem. I am working on a distributed system where all repositories on each node have to be kept in sync. I am using Lucene on each node to index the data. ...
Rob Outar
Nov 1, 2002 at 2:07 pm
Nov 4, 2002 at 1:12 pm -
Hi All, I have a problems with searching on Russian content using lucene 1.2 I indexed the content using Cp1251 charset ------------ text = new String(text.getBytes("Cp1251")); ...
Andrey Grishin
Nov 21, 2002 at 1:38 pm
Dec 4, 2002 at 1:03 am -
Hello, This is slightly off topic but... Does anyone have a handy library to compute "readability score"? Something like Flesch Reading Ease score & Co: ...
Petite_abeille
Nov 22, 2002 at 7:46 pm
Nov 25, 2002 at 2:12 pm -
That sound return the field names (e.g. name, age, gender, etc.) You want multiple values for the same field. See my other email. Otis --- Rob Outar wrote:
Otis Gospodnetic
Nov 6, 2002 at 7:59 pm
Nov 20, 2002 at 4:28 pm -
Hello Folks, I started using Lucene recetly and wanted to look at the source. However, some files seem to be missing from the source package in the Lucene downloads section. The missing files are : ...
Gautam
Nov 18, 2002 at 7:23 am
Nov 18, 2002 at 3:56 pm -
Hello, I am trying to do search for Standalone. I made it up to configuration level. All is working well. But when I try to search in http://localhost:8080/luceneweb/index.jsp , I get Welcome to the ...
Uma Maheswar
Nov 15, 2002 at 9:36 am
Nov 15, 2002 at 7:50 pm -
Hello, I am disappointed for not getting any reply evern after 4 posts. Is there any one who can help a beginner in Lucene? Thanks Uma http://www.javagalaxy.com
Uma Maheswar
Nov 14, 2002 at 3:14 am
Nov 15, 2002 at 3:17 am -
We have a web application that builds pages "on the fly" by reading directly from a database. The database contains both normal content and HTML. We use Lucene as our search engine, but I need to ...
Lichty, Kent
Nov 14, 2002 at 8:34 pm
Nov 15, 2002 at 12:01 am -
Is any work being done to allow results to be sorted according to the value of a specific field, rather than by score? Maintaining an in-memory mapping of document IDs to sortable fields a la ...
Eric Jain
Nov 29, 2002 at 11:35 am
Dec 2, 2002 at 2:15 pm -
Part of my problem seems to be that the Range Query Object isn't acting as it should as per the FAQ and other mail list entries. I'm using Lucene 1.2 I have a field in my index called DATE. I'd like ...
Michael Caughey
Nov 23, 2002 at 6:40 am
Nov 23, 2002 at 7:13 pm -
Hello lucene gurus, I've been experimenting with the QueryParser supplied with lucene and have a question. I've read from the FAQ that the grammar is the following: Query ::= Clause ( [ Conjunction ] ...
Stephane vaucher
Nov 19, 2002 at 7:50 pm
Nov 20, 2002 at 3:27 pm -
Hi, I want to use Lucene for indexing some documents which are in memory. I do not want to store them in a seperate directory. The IndexWriter class accepts directory name, where all documents to be ...
Vinay Kakade
Nov 17, 2002 at 3:37 am
Nov 18, 2002 at 6:09 pm -
I have a small (150) set of documents I'm doing some testing on. After I index them, I have 46 files in the index directory. Then I find a subset, and for each I (a) remove it from the index, (b) ...
Terry Steichen
Nov 7, 2002 at 8:28 pm
Nov 12, 2002 at 7:03 pm -
Can I index pdf or doc or txt documents with lucene ? and how I procede to do this ?I have installed a demo copy of Lucene and whene I index a set of documents, lucene index only html documents and ...
Friaa Nafaa
Nov 4, 2002 at 4:03 pm
Nov 4, 2002 at 4:19 pm -
Hello all, I am using Lucene to index both English and French documents and have run into some problems with the analysis of the text. The project I am working with is using the searches to do ...
Konrad Scherer
Nov 21, 2002 at 8:16 pm
Nov 21, 2002 at 9:29 pm -
I have a collection of XML documents, each of which contains a 'codes' section, each of which contains zero or more 'code' sections. When I index the documents, I concatenate all the non-empty 'code' ...
Terry Steichen
Nov 17, 2002 at 7:01 pm
Nov 17, 2002 at 10:18 pm -
Hi I want to use Lucene to extract top 10 frequently occuring terms from the given set of HTML document. Please let me know how lucene can be used for this purpose. I want to know how can I get the ...
Vinay Kakade
Nov 15, 2002 at 6:02 am
Nov 15, 2002 at 8:15 pm -
Hello, I have the problem with deleting documents from index. please see the my java code, i have in my index document with field "ID" and value "12345", but this code don't delete the document from ...
Rosen Marinov
Nov 10, 2002 at 12:33 pm
Nov 11, 2002 at 9:02 pm -
How can I search a readonly index ? William. The new MSN 8: smart spam protection and 2 months FREE* http://join.msn.com/?page=features/junkmail -- To unsubscribe, e-mail: For additional commands, ...
William W
Nov 8, 2002 at 12:50 pm
Nov 8, 2002 at 7:17 pm -
Hello,is there any way to index web sites by lucene, assuming we know only the url of the site ? :-- In local use we passe to lucene the full arborexcence or directory of our site (contain all the ...
Friaa Nafaa
Nov 4, 2002 at 10:49 am
Nov 4, 2002 at 1:39 pm -
I'm sure there's something that I'm missing here. Let's say we have an index of a web site with 2 fields, "body", and "url". Body is formed via Field.Text(...,Reader) and the url field by ...
Spencer, Dave
Nov 26, 2002 at 1:17 am
Nov 26, 2002 at 3:43 am -
Hi: I downloaded the lucene source and have been trying to build using ant. I am getting the following error message: ---------------------------------------------------------------------- ...
Nita Deshpande
Nov 20, 2002 at 7:13 pm
Nov 20, 2002 at 9:38 pm -
I recently upgraded (from 1.2) to the latest build (1.3.1) and found that my range queries no longer work. Here's what a simple query against my index yields: pub_date:20021109 yields 133 hits ...
Terry Steichen
Nov 13, 2002 at 4:19 pm
Nov 14, 2002 at 1:34 pm -
Hi, We have a document with 2 Fields. a) title = "X" b) fieldX = "" How can I do a search to only get documents where fieldX = "". When I construct a TermQuery against FieldX with "" as the value I ...
Aaz
Nov 13, 2002 at 6:48 pm
Nov 14, 2002 at 10:14 am -
Hi, Suppose I want to match documents where fieldX is equal to "A" OR "B". Is the following correct? BooleanQuery bq = new BooleanQuery(); Term a = new Term("fieldX","A"); Term b = new ...
Aaz
Nov 13, 2002 at 11:39 pm
Nov 14, 2002 at 1:30 am -
Quick question about Document.fields(). Lucene provides you with a method to retrieve the value of a field or grab all fields as an Enumeration. It does not, however, allow you to grab all values of ...
Roy-lucene-user
Nov 13, 2002 at 2:58 pm
Nov 13, 2002 at 10:07 pm -
Hello, I'm new to Lucene and this group, if it is improper to send such a message to this group I apologize. I tried to do a reasonable amount of up front research before coming here. I'm about to ...
Caughey, Michael
Nov 8, 2002 at 10:22 pm
Nov 9, 2002 at 12:45 am -
Hi, I noticed that DateField.dateToString does not allow dates before 1970. Is the limitation caused by java's Date or by the way it needs to be encoded for the index. What is the suggested solution ...
Herman Chen
Nov 4, 2002 at 5:57 am
Nov 7, 2002 at 7:21 pm -
Hello Everyone, I have just downloaded the newest of the nightly builds (10/27) from the apache.org site because I was looking for the specific feature of being able to control the default ...
aaron J titus
Nov 4, 2002 at 7:04 pm
Nov 5, 2002 at 12:40 am -
I think somebody already mentioned LARM. Otis --- nandkumar rayanker wrote:
Otis Gospodnetic
Nov 4, 2002 at 9:01 pm
Nov 4, 2002 at 11:12 pm -
Hello. I've installed ant 1.5.1 on Solaris 8 so that I could modify the demo jar files that come with Lucene 1.2. I've made a small modification to IndexHTML.java which is under ...
Brian Cuttler
Nov 1, 2002 at 3:47 pm
Nov 4, 2002 at 8:59 pm -
Hello. I have a problem searching big documents. If "content" is to big (over 128k) I can find the text in lucenes datafiles but I dont get searchhits on words after 128k. /Marcus ...
Marcus Ericsson
Nov 4, 2002 at 4:32 pm
Nov 4, 2002 at 4:50 pm -
I've also been working on the idea of a Generic Query Markup Language (QML), that describes any search query in XML format, this allows one to use a SAX Parser or and XSLT transform to process one ...
Mark R. Diggory
Nov 22, 2002 at 4:29 am
Nov 26, 2002 at 3:23 am -
Whats the best parser available to extarct text from PDF documents. Expecting a reply ASAP Thanks in advance Thomas Chacko
Thomas Chacko
Nov 22, 2002 at 2:25 pm
Nov 25, 2002 at 8:04 pm -
I've encountered some very puzzling Lucene behavior (I'm using 1.3dev1, StandardAnalyzer, QueryParser). My indexed documents have, among other fields, two Text fields (indexed, tokenized, stored) ...
Terry Steichen
Nov 25, 2002 at 5:29 pm
Nov 25, 2002 at 7:41 pm -
Hi, According to my experimentation, I am unable to create an IndexWriter while any IndexReader/Searcher is open on the same index. Since I have all search threads share one IndexReader, each time I ...
Herman Chen
Nov 23, 2002 at 3:48 am
Nov 23, 2002 at 6:45 am -
Hello, I am building an index with a few 1M documents, and every X documents added to the index I call optimize() on the IndexWriter. I have noticed that as the index grows this calls takes more and ...
Otis Gospodnetic
Nov 22, 2002 at 6:51 pm
Nov 22, 2002 at 7:13 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 77 |
posts | 365 |
users | 82 |
website | lucene.apache.org |
82 users for November 2002
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)