Search Discussions
-
Is it possible to do nested proximity searches with lucene? i.e. can I say I want a to be within 1 word of b and then that group to be within 4 words of c? The syntax ""a b"~1" c"~4 doesn't seem to ...
David Lee
Jun 30, 2008 at 9:16 pm
Jul 1, 2008 at 9:15 am -
Hi, I see some strange behavoiur of lucene. The following scenario. While adding documents to my index (every doc is pretty small, doc- count is about 12000) I have implemented a custom behaviour of ...
Sascha Fahl
Jun 30, 2008 at 1:00 pm
Jul 1, 2008 at 12:37 pm -
What is the difference between these three modes of operating with lucene... And are there any other modes/ways of operation also, using which we can more effectively run applications with lucene. I ...
Devashish
Jun 30, 2008 at 8:58 am
Jun 30, 2008 at 10:19 am -
Hi: I had some code to do indexReader pooling to avoid open and close on a large index when doing lotsa searches. So I had a FilteredIndexReader proxy that overrides the doClose method to do nothing, ...
John Wang
Jun 29, 2008 at 3:52 pm
Jun 30, 2008 at 10:16 pm -
if I search a keyword likes 'computer' in a shopping website. the result may contains. total: (1000) products . categories: pc (500) products . notebook (300) products . server (200) products . so ...
Lutan
Jun 28, 2008 at 7:58 am
Jul 18, 2008 at 4:49 pm -
If I'm using a computer that has multiple cores, or if I want to use several computers to speed up the indexing process, how should I do that? Is there some kind of support for that in the API? David ...
David Lee
Jun 27, 2008 at 9:58 pm
Jun 27, 2008 at 10:12 pm -
Hello All, Sort of new to lucene but have a general question in regards to performance. I've got a single index of rather large size (about 7 million docs). I've ran a couple different queries ...
Jordon Saardchit
Jun 27, 2008 at 9:25 pm
Jun 30, 2008 at 3:03 pm -
Hi, Is it possible to read a disk-based index into RAM (entirely) and have all searches operate on it there? I saw some RAMDirectory examples, but it didn't look like it will transfer a disk index ...
Darren Govoni
Jun 27, 2008 at 5:53 pm
Jun 27, 2008 at 6:35 pm -
I just implemented a sorting feature on our application where the user can change the sort on a query and reexecute the search. It works fine on text fields where most of the documents have different ...
Robert Hastings
Jun 27, 2008 at 3:45 pm
Jun 27, 2008 at 7:17 pm -
Hi all. IndexWriter.close() API states that :: "Flushes all changes to an index and closes all associated files.". What does "closes all associated files" mean, since we are apparently able to still ...
Java_is_everything
Jun 27, 2008 at 12:41 pm
Jun 30, 2008 at 8:59 am -
Dear all, Currently I am using Lucene jave 2.3.2 demo to parse Microsoft 2003 and 2007 docs and PDF files. It is able to parse files with *.pdf, *.doc, *.xls etc. But it does not search in files of ...
Kumar Gaurav
Jun 27, 2008 at 11:08 am
Jun 28, 2008 at 3:08 pm -
Folks, Could anyone tell me the significance of the naming of the cfs files in the luceneindex e.g. _1pp.cfs, _2kk.cfs etc. I have observed many differently named files being created temporarily ...
Mick l
Jun 27, 2008 at 9:49 am
Jun 27, 2008 at 1:34 pm -
Hi all. Is there a way to know "number-of-documents-that-will-be-flushed", just before giving a call to flush() method? I am currently using Lucene 2.2.0 API. Looking forward to replies. Ajay Garg -- ...
Java_is_everything
Jun 27, 2008 at 4:27 am
Jun 27, 2008 at 2:58 pm -
Hello Lucene Gurus, I'm new to Lucene so sorry if this question basic or naïve. I have a Document to which I want to add a Field named, say, "foo" that is tokenized, indexed and unstored. I am using ...
Bill Chesky
Jun 27, 2008 at 4:03 am
Jun 30, 2008 at 3:09 pm -
Hi, Is there a lucene index reader that will load a disk-based index into memory and perform searches on it from RAM? Sorry if I missed this in the docs somewhere. Darren ...
Darren Govoni
Jun 26, 2008 at 7:41 pm
Aug 13, 2008 at 5:13 pm -
Hi, I'm looking for the correct way to create an index given the following restrictions: 1. The documents are received in batches of variable sizes (not more then 100 docs in a batch). 2. The batch ...
Eran Sevi
Jun 26, 2008 at 2:28 pm
Jun 29, 2008 at 7:07 am -
Is there a class to do this?
Jason Rutherglen
Jun 26, 2008 at 1:09 pm
Jun 26, 2008 at 1:09 pm -
Hello i am having the following code to highlight a text public String highlight(String text, String query ) throws IOException { TermQuery query = new TermQuery(new Term("f", query)); QueryScorer ...
Jim
Jun 26, 2008 at 8:32 am
Jun 26, 2008 at 8:32 am -
Hello i am having the following code to highlight a text public String highlight(String text, String query ) throws IOException { TermQuery query = new TermQuery(new Term("f", query)); QueryScorer ...
Jim
Jun 26, 2008 at 7:50 am
Jun 30, 2008 at 10:01 am -
hi, I am fairly new to Lucene and is currently going over its source code. I had read through the code for a few times, mapping it and all but I seems to be facing a problem. I could go all the way ...
Blazingwolf7
Jun 26, 2008 at 7:24 am
Jul 1, 2008 at 6:34 am -
Hi all. Is there a way to obtain the number of documents in the Lucene index (2.0.0), having a particular term indexed, much like what we do in a database ? Looking forward to a reply. Ajay Garg -- ...
Java_is_everything
Jun 26, 2008 at 5:10 am
Jun 26, 2008 at 5:24 am -
hi, what is the correct way to instruct the indexwriter (or other classes?) to delete old commit points after N minutes ? I tried to write a customized IndexDeletionPolicy that uses the parameters to ...
Alex Cheng
Jun 26, 2008 at 12:40 am
Jun 26, 2008 at 2:19 pm -
hi, what is the correct way to instruct the indexwriter to delete old commit points after N minutes ? I tried to write a customized IndexDeletionPolicy that uses the parameters to schedule future ...
Alex Cheng
Jun 26, 2008 at 12:22 am
Jun 26, 2008 at 12:22 am -
hi, what is the correct way to instruct the indexwriter to delete old commit points after N minutes ? I tried to write a customized IndexDeletionPolicy that uses the parameters to schedule future ...
Alex Cheng
Jun 26, 2008 at 12:16 am
Jun 26, 2008 at 12:16 am -
Hello, I am currently keeping an index of all our client's usernames. The search functionality is implemented using a PrefixFilter. However, we would like to expand the functionality to be able to ...
Mark Ferguson
Jun 25, 2008 at 5:43 pm
Jun 28, 2008 at 12:33 am -
Hi, I have 2 kind of searches. One kind is like the wikipedia suggestions and the other one is pretty classic. So does it make sense to have different indices for this 2 search-styles? best, sascha ...
Sascha Fahl
Jun 25, 2008 at 1:51 pm
Jun 25, 2008 at 2:01 pm -
Hello people, yes, there were several threads about this topic, but I sadly have to respawn it, I'm sorry. The first I found was a discussion from May 2005: ...
Christian Reuschling
Jun 25, 2008 at 9:48 am
Jun 25, 2008 at 10:01 pm -
Hi, I know that case-insensitive searching is normally done by creating an all-lower-case version of the documents, and turning the search terms into lower case whenever this field is searched, but ...
John Byrne
Jun 25, 2008 at 9:41 am
Jun 26, 2008 at 8:20 am -
Hello, I have a stemmed index, but i want to search the exact form of a word. I use French Analyzer, so for instance "progression", "progresser" are indexed with the linguistic root "progress". But ...
Renou oki
Jun 25, 2008 at 8:16 am
Jun 27, 2008 at 1:38 pm -
4
Score 0
Hi, I'm using lucene to compute the score of some documents. For several reasons I need also to know the documents that don't match the input query. For example with score 0. I don't know the engine ...Paolo Valleri
Jun 25, 2008 at 7:31 am
Jun 26, 2008 at 9:37 am -
Hi, I have a tags field. And each tag can have multiple words, like "San Francisco". Each tag is analyzed into Keyword field like this new Field("tags", "San Francisco",Field.Store.YES, ...
Chris Lu
Jun 25, 2008 at 12:15 am
Jun 25, 2008 at 3:44 am -
Hi: I am trying to add couple more values to the TermInfo file and want to keep the index backward compatible. But I see values such as docFreq etc. are stored as a VInt, so I couldn't do things like ...
John Wang
Jun 24, 2008 at 7:00 pm
Jun 24, 2008 at 7:00 pm -
Jay dragon
Jun 24, 2008 at 4:44 pm
Jun 24, 2008 at 4:44 pm -
Hi, I want to customize a new Similarity class which need to adopt payload information.The current definition of scorePayload is below: "public float scorePayload(String fieldName, byte [] payload, ...
Wuqi
Jun 24, 2008 at 4:22 pm
Jun 24, 2008 at 7:30 pm -
Hello: I have a problem where I need to search for the word "C++". If I use StandardAnalyzer, the "+" characters are removed and the search is done on just the "c" character which is not what is ...
Alex Soto
Jun 24, 2008 at 3:59 pm
Jun 24, 2008 at 3:59 pm -
Hello: I have a problem where I need to search for the term "C++". If I use StandardAnalyzer, the "+" characters are removed and the search is done on just the "c" character which is not what is ...
Alex Soto
Jun 24, 2008 at 3:49 pm
Jun 24, 2008 at 4:40 pm -
Folks, My users require wildcard searches. Sometimes their search phrases contain spaces. I am having trouble trying to implement a wildcard search on strings containing spaces, so if the term ...
Mick l
Jun 24, 2008 at 12:29 pm
Jun 25, 2008 at 9:21 pm -
Hi All, I have created an index file and indexing the content retrieved from a database. How can I search on this content? When indexed 3 files namely _0.cfs, segments.gen and segments_k are created. ...
Yugana
Jun 24, 2008 at 9:18 am
Jun 24, 2008 at 11:36 am -
Hi All, I am new to Lucene Search. Can you let me know if it is possible to index the "Verity Spider" content. If possible please let me know how to create a index form it and search on it. Also ...
Yugana
Jun 24, 2008 at 7:25 am
Jun 25, 2008 at 10:55 am -
Hi, BoostingQuery is designed to demote the scores of documents when they match the undesired query by the boosting/demoting the final score. The problem I see is this demoting factor is ...
Jay dragon
Jun 24, 2008 at 6:39 am
Jun 24, 2008 at 7:05 am -
Hi All, I am facing this error while doing Indexing text files.can anyone guide me how to resolve this issue. -- View this message in context: ...
Sebastin
Jun 23, 2008 at 10:07 pm
Jun 24, 2008 at 3:46 pm -
Hello, I need to be able to select a random word out of all the words in my index. how can I do this tru termDocs() ? Also, I need to get a list of unique words as well. Is there a way to ask this to ...
Cam Bazz
Jun 23, 2008 at 10:03 pm
Jun 24, 2008 at 2:43 pm -
Hello. I am trying to implement a search based on a search text in an index that contains Track Title, Album Name or Artist Name information that delivers a list or results that are suited for "auto ...
Lukas Öesterreicher
Jun 23, 2008 at 3:25 pm
Jun 23, 2008 at 4:19 pm -
Hi, I have around 10 different indexfiles to request. Is it better to do this via one request to one MultiReader or is better to request the 10 indeces one after another? Especially for doing some ...
Sascha Fahl
Jun 23, 2008 at 12:28 pm
Jun 25, 2008 at 9:12 am -
I've tried everything I can think of and I still can't unsubscribe from java-user@lucene.apache.org . None of my unsubscribe or emails to java-user-unsubscribe or java-user-help seem to do anything. ...
William Thimbleby
Jun 23, 2008 at 11:43 am
Jun 23, 2008 at 11:43 am -
Hi All, I am using Lucene for creating indexes. There is one field as "email" which stored the email id. I have few queries regarding searching: 1. I want to search for all the records having domain ...
Aditi Goyal
Jun 23, 2008 at 6:22 am
Dec 8, 2008 at 7:06 pm -
Hi, I currently am using Lucene to index documents. I index 4 fields, the body of the document, the city it is related to, the state it is related to, and the country it is related to. I have a java ...
Dr. Fish
Jun 22, 2008 at 4:30 pm
Jun 23, 2008 at 1:27 am -
How do you handle token payload that represent multiple values? I simply don't do it even though there are cases where I would like to see it. I also find that my token filters that update payload ...
Karl Wettin
Jun 21, 2008 at 4:57 pm
Jun 23, 2008 at 10:39 pm -
is there any way i can find example of a program using NGramSpeller.java -- View this message in context: http://www.nabble.com/Example-using-NGramSpeller.java-tp18034945p18034945.html Sent from the ...
Sumittyagi
Jun 20, 2008 at 6:21 pm
Jun 20, 2008 at 6:21 pm -
Hello there! I trying to query for a specific document on a efficient way. My index is structured in a way where I have an id field which is a unique key for the whole index. When I'm ...
Vinicius Carvalho
Jun 20, 2008 at 4:13 pm
Jun 24, 2008 at 11:57 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 102 |
posts | 444 |
users | 119 |
website | lucene.apache.org |
119 users for June 2008
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)