Search Discussions
-
Hi all, I've recently started using lucene and I'm running into the same issue with the query parser. I'd like to use queries that contain dashes in the field name, but as far as I can tell it seems ...
Jon Pipitone
May 12, 2003 at 3:23 pm
Jul 27, 2003 at 12:36 pm -
List, I'm having problems using an absolute path to the index directory when my web application is deployed in a WAR file. The absolute path changes depending on the server. Is there a way to either ...
Jason Cox
May 2, 2003 at 3:40 pm
May 26, 2003 at 1:50 am -
Hi list, I'm experiencing a high number of files in the Lucene index, even after running optimize I still have over 600 files in my Lucene index. Now the scary thing is that's about the same number ...
Victor Hadianto
May 2, 2003 at 3:32 pm
May 6, 2003 at 1:02 pm -
Is there a query object which can match all documents? As an example, suppose my search supports zero or more search criteria. Each criteria, if specified, is required to match the document. If no ...
Newsham
May 9, 2003 at 11:49 pm
May 23, 2003 at 4:35 am -
12
Parsers
Hi all, I have a rather nice html parser that I got from SourceForge. Does anyone know of any good parsers for pdf and Microsoft Office Suite (.doc, .ppt, .xls, etc), any help would be much ...Pete Lewis
May 28, 2003 at 10:48 am
May 29, 2003 at 2:14 pm -
Hi - I have created an index of 1.8 million documents, each document containing 5-10 fields. When I run a search, that I know has a small number of hits, it works great. However, if I run a search ...
Cory Albright
May 27, 2003 at 6:30 pm
May 29, 2003 at 4:08 am -
Hi All, I have a couple of questions regarding using Lucene in an EJB environment. There seems to be a number of probs wrt the ejb spec and lucene. The spec says that EJBs shouldn't (amoungst other ...
Leslie Hughes
May 22, 2003 at 7:16 am
May 27, 2003 at 1:59 pm -
Hi, is it possible to get a list of subqueries(array of query-objects) after a queraparser has done parsing? Thanks for your help Günter
Günter Kukies
May 19, 2003 at 2:50 pm
May 27, 2003 at 6:54 pm -
Hi, please have a look at the FuzzyTermEnum class in Lucene. There is an impressive implementation of Levenshtein distance there that you can use; simply set the fuzzy distance higher than 0.5 (0.75 ...
Karsten Konrad
May 30, 2003 at 7:06 pm
Jun 5, 2003 at 7:14 am -
Hello all, As far as I have understood, lucene does not allow search queries starting with wildcards. I have a file database indexed by content and also by filename. It would be nice if the user ...
Andrei Melis
May 28, 2003 at 6:52 am
May 30, 2003 at 12:51 am -
Hi, I am using Lucene 1.3. I want the 'default' search field to point to multiple fields (actually, all available fields). Is there API support to accomplish this ? thanks for your help, vikas. ...
Ramrakhiani, Vikas
May 13, 2003 at 7:35 am
May 14, 2003 at 9:51 am -
If I use my search engine is possible to highlight the string in an excel file and open it? Michel -----Original Message----- From: Shoba Ramachandran Sent: Monday, May 12, 2003 8:59 PM To: Lucene ...
Mmachado
May 12, 2003 at 7:07 pm
May 14, 2003 at 12:13 am -
Hello I just started using Lucene, and I'm writing a simple program (swing interface) that adds files to an index (I'm not searching that index yet). In my main frame, I click a button, a FileChooser ...
Guilherme Barile
May 21, 2003 at 1:59 pm
May 21, 2003 at 8:52 pm -
Using 1.3-RC1, I've got an index where a keyword field contains the primary key value of a database row (an int), and when a user updates the data for the row, I delete the document from the index ...
Doug Kirk
May 21, 2003 at 1:33 pm
May 21, 2003 at 4:04 pm -
I have an indexer that reads data from database and indexes the data. foreach(db_row) { Document doc = new Document(); doc.add(Field.Text("Product", productName); doc.add(Field.Text("Description", ...
Venkatraman, Shiv
May 31, 2003 at 2:37 pm
May 31, 2003 at 5:14 pm -
Hi, I was just wondering what the rationale is behind lowercasing wildcard queries produced by QueryParser? It's just that my data is all upper case and my analyser doesn't lowercase so it seems a ...
Leslie Hughes
May 30, 2003 at 5:24 am
May 31, 2003 at 1:12 am -
Hi folks, I have a requirement to find documents similar to another. Can that be accomplished using a PhraseQuery, or some other way? Thanks, Rick ...
Wirthlin, Rick - Workstream
May 29, 2003 at 8:31 pm
May 30, 2003 at 10:44 am -
Hey, I succesfully made an index of the content of a database, the document is constructed as following: Document doc = new Document(); doc.add(Field.Text("VOORNAAM", voornaam)); ...
D-Fuse
May 15, 2003 at 1:40 pm
May 15, 2003 at 3:04 pm -
Hi, I did it, but I use only lucene. You need to create an IndexWriter with SimpleAnalyzer, an InputStream as new FileInputStream, create Document with two Fields: one contains the file path and one ...
Mmachado
May 1, 2003 at 5:25 am
May 6, 2003 at 2:43 pm -
Hi, anybody knows which is the best way to implements in Lucene a fuctionality (that Google has) like this: Search text- notebok Answer- Did you mean: notebook ? Thanks, Dario ...
Dario Dentale
May 30, 2003 at 9:13 am
May 30, 2003 at 5:16 pm -
After deleting a document from the index, and then adding a document to the index (same doc with updated info), it seems that the IndexSearcher doesn't find the updated document. Whether I specify no ...
Doug Kirk
May 22, 2003 at 5:34 pm
May 23, 2003 at 3:38 am -
Hi, I have a jsp which has five text box. The user puts in some text in 1 or more text boxes. I want to conduct a multi field wildcard search. Eg: for textBox1 the user enters "hello" for textBox2 ...
Subhrajyoti Moitra
May 17, 2003 at 9:14 am
May 21, 2003 at 11:14 am -
Hello, i use the fellowing filters: public TokenStream tokenStream(String fieldName, Reader reader) { TokenStream result = new StandardTokenizer(reader); result = new StandardFilter(result); result = ...
Günter Kukies
May 15, 2003 at 12:43 pm
May 19, 2003 at 10:07 am -
Hi all, In our application we are indexing a massive amount of documents in parallel over 16 machines. Our problem is that we have duplicate documents in the input and the same document is indexed ...
Victor Hadianto
May 9, 2003 at 12:59 am
May 9, 2003 at 7:58 am -
Instead of Lucene xml.apache.org uses Google. What are the reasons for not using Lucene ? Andreas --------------------------------------------------------------------- To unsubscribe, e-mail: ...
Andreas Kuckartz
May 16, 2003 at 3:13 pm
May 17, 2003 at 12:35 am -
Good morning all, Hats off to the folks involved in this project, you guys and gals are the true programmers. Writing a search engine is a dirty job and I am glad that this community is available to ...
Bryan LaPlante
May 9, 2003 at 11:24 am
May 12, 2003 at 12:29 pm -
I am have a tough time locating the source of my problem. If anyone is interested in using the taglib for lucene and would care to interact with me on this, a second pair of eyes would be greatly ...
Bryan LaPlante
May 21, 2003 at 8:39 pm
May 28, 2003 at 8:54 pm -
What is wrong with Document.setBoost(float) /** Sets a boost factor for hits on any field of this document. This value * will be multiplied into the score of all hits on this document. */ If you know ...
Eric Isakson
May 16, 2003 at 4:00 pm
May 17, 2003 at 1:04 am -
Hi all, I've got a question regarding how Lucene priorizes complex --like "yoggy drop the honey pot"-- query results. I wanted lucene to show first those results having ALL terms. By default lucene ...
Xavier Guardiola
May 16, 2003 at 8:09 am
May 16, 2003 at 9:41 pm -
Can someone help me on using date fields, I need to peform searching on date fields. I am able to add date fields to index using DateField.dateToString(messageDate) - where messageDate is a Date ...
Sushma Sinha
May 1, 2003 at 9:33 am
May 1, 2003 at 2:42 pm -
Hi list, I am having a weird problem. I have a PDF document. Using PDFBox library i get the contents of the PDF file as a String. This string gets indexed using the StandardAnalyser. This document ...
Subhrajyoti Moitra
May 28, 2003 at 7:10 am
May 28, 2003 at 7:27 am -
Is there a (better) way that I can use to figure out which field in a document caused the document to be returned from a query? Currently, after I do a search across all of my fields and documents, I ...
Armbrust, Daniel C.
May 27, 2003 at 6:17 pm
May 27, 2003 at 6:58 pm -
What do you mean, one-user-at-a-time? I don't think either Lucene or JCA has that limitation. -----Original Message----- From: Guilherme Barile Sent: Thursday, May 22, 2003 10:04 AM To: Lucene Users ...
Lichtner, Guglielmo
May 22, 2003 at 2:23 pm
May 22, 2003 at 3:48 pm -
Has anyone tried this? Its home page states: CLucene is faster than lucene as it is written in a C++. Otis --- otis@apache.org wrote:
Otis Gospodnetic
May 21, 2003 at 9:38 pm
May 22, 2003 at 3:33 pm -
Hi, I am trying to write a delete method using delete(int docNum) from the IndexReader class. The problem is that I don't know how to get the docNum parameter. Can you please help me. My idea was to ...
Marie-Hélène Forget
May 22, 2003 at 2:52 pm
May 22, 2003 at 3:22 pm -
I have just downloaded the Lucene 1.2 distribution. After running through the demo, I decided to index (using IndexFiles that is used to load the demo documents) about 100 XML files that I have ...
Joe Paulsen
May 21, 2003 at 3:41 pm
May 21, 2003 at 6:53 pm -
Hello: I'm using lucene (lucene-1.3-dev1) and tomcat (4.1) for my company's websites. The largest number of documents contained in any index is approx. 800,000. I'm getting OutOfMemoryErrors ...
Lucinda_rockemore
May 2, 2003 at 9:30 pm
May 21, 2003 at 8:40 am -
Erm, isnt "PageRank" trademarked by Google and covered by a patent (6285999) ?? So we wouldn't want to implement it and infringe would we ? ;-) ...
Leslie Hughes
May 19, 2003 at 2:32 am
May 19, 2003 at 3:33 pm -
Hello, How do I create my own Analyzer that implements PorterStemFilter + StopFilter + LowerCaseFilter ? Thank you Andy --------------------------------------------------------------------- To ...
Andy Nauli
May 7, 2003 at 3:06 am
May 7, 2003 at 5:29 am -
hello, I am just starting looking at lucene for my project. Before I proceed, I would like to know if it's a good idea to use lucene for creating index and also performing statistical analysis on the ...
Andy Nauli
May 2, 2003 at 9:33 am
May 2, 2003 at 5:29 pm -
We toString() and reparse queries like the following with no apparent problems in version 1.2 but something undesirable could have crept into 1.3 RC-1. +kot:"projects" +added:[19990101-null] ...
Hoad, Richard (AFIS)
May 1, 2003 at 7:05 am
May 1, 2003 at 3:12 pm -
I found some references to an SQLDirectory class in the mailing list archives but I was unable to actually locate the package anywhere in the CVS (I looked in both the primary and the sandbox) nor ...
Anthony Eden
May 31, 2003 at 3:27 am
Jun 2, 2003 at 8:10 am -
Hello, Is the cost of opening an IndexSearcher proportional to anything, e.g. physical index size, number of segments? Thanks. -- Herman ...
Herman Chen
May 29, 2003 at 9:23 am
May 29, 2003 at 9:52 am -
I think it's possible, but I'm not sure how Scorers work. I just want to place the most recent hits at the front and the oldest ones at the back (where "date" is a field in the documents). Is there a ...
David Weitzman
May 28, 2003 at 12:32 am
May 28, 2003 at 1:42 pm -
Hi, I am have a problem using MultiSearcher and I want to ask if I am using it properly. Every other run of my jsp page throws an exception on the msearcher.search(query); line of code, otherwise it ...
Bryan LaPlante
May 23, 2003 at 9:02 pm
May 24, 2003 at 8:22 am -
Hello, [Joe Paulsen [joseph.paulsen@verizon.net]]: Check out: <http://jakarta.apache.org/lucene/docs/api/index.html - class org.apache.lucene.index.IndexWriter - description of maxFieldLength: " The ...
Materna, Wolf-Dietrich (empolis B)
May 21, 2003 at 3:56 pm
May 21, 2003 at 6:56 pm -
Hi guys, I am new in Lucene but i like a lot. I am trying to develop a search engine. I have two problems: First I did a program for indexing files, here the code: public void indexFile(String ...
Mmachado
May 20, 2003 at 7:07 pm
May 20, 2003 at 7:13 pm -
All, I've got a query of the form "A or B or ( C or D or E )" where the results must contain the terms A or B, but should be rated higher if they contain C,D, or E as well. Is there a good way to do ...
Tom Eskridge
May 19, 2003 at 4:56 pm
May 19, 2003 at 5:43 pm -
Is it possible to search using a query like price: 15.00 or something similar. This does not seem possible to me since '<' and ' ' are not query operators. Also, the index created for filed 'price' ...
Song, Xuekai
May 15, 2003 at 3:30 pm
May 15, 2003 at 3:37 pm -
Hey, is it possible to load a FSDirectory at the start of my program into a RAMDirectory and write it back to a FSDirectory when I'm closing down?
D-Fuse
May 15, 2003 at 1:35 pm
May 15, 2003 at 1:42 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 78 |
posts | 334 |
users | 96 |
website | lucene.apache.org |
96 users for May 2003
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)