Search Discussions
-
Hi there, I'm testing Lucene after reading a good article on it on JavaWorld. Lucene seems quite simple and very powerful, but there's something I can't get. The first time an application uses an ...
Jean-christian Gagne
Dec 4, 2001 at 3:02 pm
Dec 10, 2001 at 12:18 pm -
Hi Serge, You can't remove a field from a Document. If you compare an Index in Lucene to a table in a relational database, a Document is a row and a Field is a column. You can always delete a row but ...
Jean-christian Gagne
Dec 10, 2001 at 10:39 am
Dec 20, 2001 at 2:40 pm -
Hi All, This must be simple enough, but can anyone please explain me when a WildcardQuery is created in QueryParser i.e. what special characters in the query string are required to build a ...
Sampreet
Dec 11, 2001 at 4:44 am
Dec 12, 2001 at 7:43 am -
I suggest you include ant in the CVS. I believe this is a common practice for Jakarta projects. Paul Spencer -- To unsubscribe, e-mail: For additional commands, e-mail:
Paul Spencer
Dec 10, 2001 at 1:31 pm
Dec 10, 2001 at 11:46 pm -
Does anyone know of any companies or agencies using Lucene for their products/projects? I am attempting to make a marketing pitch for Lucene to my manager and I know one of the first questions will ...
Jeff Kunkle
Dec 6, 2001 at 1:01 pm
Dec 8, 2001 at 2:47 am -
Hi, How should I integrate the HTML Parser (which is in the demo directory) in a new project ? In particular with the HTMLParser.jj file. Do a need to compile it before trying to use it in my code. ...
Christophe GOGUYER DESSAGNES
Dec 17, 2001 at 4:32 pm
Dec 18, 2001 at 11:05 am -
Hi, I really tried everything to get a DateFilter to work but I failed. :-( What I did was: Indexing: doc.add( Field.Keyword("last-modifed", DateField.timeToString( timeInMillies ) ); e.g. millies: ...
Jan Stövesand
Dec 14, 2001 at 11:36 am
Jan 9, 2002 at 12:24 pm -
Hello, In Lucene documentation, the query syntax is defined as follows: Syntax: Query ::= Clause ( [ Conjunction ] Clause ) * Where: Clause ::= [ Modifier ] [ FieldName ':' ] BasicClause Modifier ::= ...
Aruna Raghavan
Dec 21, 2001 at 11:05 pm
Dec 22, 2001 at 11:59 pm -
Please help In my LuceneDocument, I have three fields (title, library, content) and I would like to search for 'myText' in the content field AND it should also match 'myLibrary' in Library field. ...
Dzung Nguyen
Dec 11, 2001 at 6:46 pm
Dec 12, 2001 at 12:55 am -
Iam trying to search for words starting with accent characters.As posted in one of the Lucene user-list mail I tried using UTF-8 encoding String query = this.request.getParameter( "query" ); if( ...
Kiran Kumar K.G
Dec 8, 2001 at 11:50 am
Dec 10, 2001 at 12:18 pm -
Hi, characters before the wild card for wildcard queries. In other words, if the word is dogleash and I looking by using do* it returns wrong results (usually only a asubset) where as if I use dog*, ...
Aruna Raghavan
Dec 21, 2001 at 11:06 pm
Jan 11, 2002 at 3:39 am -
Hi! What encoding should documents be to index? I need to search windows-1251 xml files, so should I convert them to UTF-8 first, or not to make it possible to search in russian? Thanks. -- To ...
Philipp Chudinov
Dec 19, 2001 at 2:14 am
Dec 19, 2001 at 8:25 am -
Hello All ! I see delete method in IndexReader, but when I delete item from reader - this item will not be deleted physically. So I must rewrite all index after each deleting ?? Or it is quite smart ...
Serge A. Redchuk
Dec 10, 2001 at 9:22 am
Dec 11, 2001 at 6:28 am -
Hi all, It looks like Lucene supports concurrent searchs as long as the index is not modified with add, delete, or optimize actions (and maybe others?). For those actions, it is not clear what is ...
Jean-christian Gagne
Dec 7, 2001 at 1:50 pm
Dec 10, 2001 at 6:45 am -
Hello! I like to suggest making jsp custom tags to work with LUCENE. I think it can be useful for many LUCENE users. What do you think about it? Is it interesting to LUCENE users and committers at ...
YMikulski
Dec 7, 2001 at 3:51 pm
Dec 7, 2001 at 9:37 pm -
Patrick Codere
Dec 6, 2001 at 1:34 pm
Dec 6, 2001 at 1:54 pm -
Hey all- Wondering if it's possible to a prefix query, but with multiple words; basically trying to get +artist:"eric clap*" to return documents with artists "eric clap", "eric clapton", "eric ...
Tom Barrett
Dec 3, 2001 at 11:40 pm
Dec 4, 2001 at 5:13 pm -
Hello, Does any one know what is PrefixQuery '(' Query ')'? in the definition of query syntax Syntax: Query ::= Clause ( [ Conjunction ] Clause ) * Where: Clause ::= [ Modifier ] [ FieldName ':' ] ...
Aruna Raghavan
Dec 27, 2001 at 8:09 pm
Dec 27, 2001 at 8:26 pm -
I had a following problem: I filled index like this: iw = new IndexWriter(index, new SimpleAnalyzer(), false); iw.addDocument(assetToDoc(asset)); // assetToDoc return Document instance iw.close(); ...
Uroą Jurglič
Dec 27, 2001 at 11:25 am
Dec 27, 2001 at 1:40 pm -
I'm having a problem when using Query and DateFilter for a search. If I create DateFilter with DateFilter.After with current time&date as parameter, then I get NullPointerException when executing ...
Uroą Jurglič
Dec 17, 2001 at 4:42 pm
Dec 17, 2001 at 4:53 pm -
...... Let we have 4 docs: doc1: "Love is life" doc2: "Java is pretty nice language" doc3: "C++ is powerful, but unsafe" doc4: "Onion and love sometimes are not compatoble" So, if search for "love OR ...
Serge A. Redchuk
Dec 17, 2001 at 2:15 pm
Dec 17, 2001 at 3:36 pm -
Sorry, my mistake. I glanced at your message and leapt to the wrong conclusion. Don't know what is wrong in your code but since I had been meaning to get to grips with Date searching in Lucene but ...
Ian Lea
Dec 17, 2001 at 11:01 am
Dec 17, 2001 at 12:41 pm -
Hi, I understand that a Chinese tokenizer has been contributed. Is it publicly available? Thanks -- Herman
陳建文
Dec 12, 2001 at 3:39 am
Dec 12, 2001 at 4:32 am -
Couldn't QueryParser catch the Error and throw an Exception? "Subclasses of Error, unlike subclasses of Exception, should not be caught and generally cause termination of the program. Subclasses of ...
Christian Schrader
Dec 7, 2001 at 2:20 pm
Dec 8, 2001 at 3:20 am -
Hi All, I am using lucene for search functionality in our project. I wanted to implement the wild-card query such as '*bas*' which results in hits containing 'database' and 'basic'. Can it be ...
Sampreet
Dec 4, 2001 at 7:17 am
Dec 7, 2001 at 12:43 pm -
hello all, I am still trying to find the best way to index a really big amount of data. at the moment I am trying to index each of the 29 textfiles in a single thread using for each an own ...
Chantal Ackermann
Dec 5, 2001 at 12:29 pm
Dec 5, 2001 at 12:38 pm -
This message didn't get a response on lucene-dev so I thought I would give it a try here ..... -- To unsubscribe, e-mail: For additional commands, e-mail:
Paddy Clark
Dec 3, 2001 at 10:35 am
Dec 4, 2001 at 5:13 pm -
Yes, it is a way. You have to implement org.apache.lucene.analysis.TokenFilter and to implement the next() method with the algorithm for Portugese. After that you can create a PortugeseAnalyser ...
Ruffieux Stephane, yellowworld extern
Dec 3, 2001 at 12:33 pm
Dec 4, 2001 at 7:23 am -
Hi all, If i want to stop the indexing for current ongoing searching operation then how should i proceed? thanx in advance regards parag -- To unsubscribe, e-mail: For additional commands, e-mail:
Parag Dharmadhikari
Dec 3, 2001 at 3:13 pm
Dec 3, 2001 at 4:40 pm -
I have been experimenting with indexing a document set with different sets of fields. Specifically, I start out with a "contents" field that is a concatenation of all the elements of the original ...
Joshua O'Madadhain
Dec 2, 2001 at 2:51 am
Dec 3, 2001 at 4:32 pm -
I'm new to Lucene. First of all I would like to know if there is a search arquive like "sun servlets list". My first problem is that I want to index a Portuguese database and I need to remove the "s" ...
Bizu de Anúncio
Dec 3, 2001 at 12:10 pm
Dec 3, 2001 at 12:22 pm -
Hello All, I am confused about the meaning of the braces in the query syntax: what does cat(dog) find? what does cat(dog)* find? Or is the following defines queries of the following kind? (cat) AND ...
Aruna Raghavan
Dec 27, 2001 at 7:29 pm
Dec 27, 2001 at 7:29 pm -
I will be out of the office starting 12/24/2001 and will not return until 01/02/2002. I will respond to your message when I return. -- To unsubscribe, e-mail: For additional commands, e-mail:
Jonathan_wasson
Dec 27, 2001 at 11:59 am
Dec 27, 2001 at 11:59 am -
Hello lucene-user, ... and dear lucene developers ! I think there's "ideo-logic" error in QueryParser: (and in BooleanQuery!) when I search for smth. like "love OR NOT onion" I receive the same ...
Serge A. Redchuk
Dec 17, 2001 at 1:51 pm
Dec 17, 2001 at 1:51 pm -
Hi folks, I've been looking at Eyebrowse, an email archive indexing program built on top of Lucene. Eyebrowse also uses mysql to store database tables about messages (tables containing mbox ...
Steven J. Owens
Dec 13, 2001 at 11:31 pm
Dec 13, 2001 at 11:31 pm -
Hello All, I'm currently having problems designing my application with respect to synchronising the deletion of documents from an index which is also being indexing and queried. I am using the ...
Nick Smith
Dec 13, 2001 at 3:05 pm
Dec 13, 2001 at 3:05 pm -
Hi Rahul, I think you need to use the PhraseQuery. It is used by QueryParser when the search string is given in quotes say "company shareholders" The FuzzyQuery has a functinality similar to ...
Sampreet
Dec 12, 2001 at 7:13 am
Dec 12, 2001 at 7:13 am -
Hello All, Is it necessary to close and reopen an IndexWriter in order to create/delete Documents and do look ups? I am currently using a home made locking mechanism to do lock() and unlock() for ...
Aruna Raghavan
Dec 10, 2001 at 11:07 pm
Dec 10, 2001 at 11:07 pm -
Hello lucene-user, You can laugh, but it's not clear to me how to update/remove Field from Document (can only add) or even update/remove Document from Index. But I saw this magic words ...
Serge A. Redchuk
Dec 10, 2001 at 9:05 am
Dec 10, 2001 at 9:05 am -
Hi all, I'm using lucene application forindexing XML,HTML and Text files. When I indexed one XML file of about 2MB size it indexed. But when I given some words for searching it is not giving me ...
Srinivasa v
Dec 10, 2001 at 6:02 am
Dec 10, 2001 at 6:02 am -
I'm integrating Lucene as the searching engine of a commercial server product. I've been reading the license trying to figure out how, precisely, it affects us. Our obligations under condition 3 is ...
Avi Drissman
Dec 7, 2001 at 7:07 pm
Dec 7, 2001 at 7:07 pm -
Hello all ! Please do not pay attantion to my previous 2 letters with question about how to search smth. like this: fieldname1:*smth* fname2:moo* I've already know how to do it ! -- Best regards, ...
Serge A. Redchuk
Dec 7, 2001 at 3:00 pm
Dec 7, 2001 at 3:00 pm -
I often encounter this problem when using QueryParser to parse queries that contain certain punctuation. I believe the only solution is to parse the query yourself (allowing the punctuation) and ...
Paul Friedman
Dec 7, 2001 at 2:21 pm
Dec 7, 2001 at 2:21 pm -
Just a test. I told you not to read it :-) -- To unsubscribe, e-mail: For additional commands, e-mail:
Jean-christian Gagne
Dec 4, 2001 at 2:27 pm
Dec 4, 2001 at 2:27 pm -
hi all, I'm using lucene package for my application, it is giving result for almost all sorts of Queries, but when I tried to search a word which starts with containg special characters like " æ " ...
Srinivasa v
Dec 3, 2001 at 8:24 pm
Dec 3, 2001 at 8:24 pm -
I have just started work on a French stemmer for Lucene. My approach is to use the German stemmer contributed by Gerhard Schwarz as a starting point for the structure of the modules (thank you, ...
Brian Brown
Dec 3, 2001 at 5:06 pm
Dec 3, 2001 at 5:06 pm -
Some people asked about something like this. This can convert Word/RTF files to XML and from there you can use the code that converts that XML to Lucene Documents that was posted the other day. ...
Otis Gospodnetic
Dec 3, 2001 at 3:54 pm
Dec 3, 2001 at 3:54 pm -
here you find the current code: java: SQLDirectory.java. (should work with all sql databases via JDBC) sql: Oracle: see appended scripts SQL Server: change varchar2 to varchar, integer to bigint and ...
Marc Kramis
Dec 2, 2001 at 3:51 pm
Dec 2, 2001 at 3:51 pm -
A couple of questions: (1) I'm confused by the API for queries which have multiple terms. How do I construct a query where each term in the query has a different boost factor? (2) Does the Lucene API ...
Joshua O'Madadhain
Dec 1, 2001 at 10:40 am
Dec 1, 2001 at 10:40 am
Group Overview
group | java-user |
categories | lucene |
discussions | 49 |
posts | 146 |
users | 58 |
website | lucene.apache.org |
58 users for December 2001
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)