Search Discussions
-
Hi All, i used to search 3 Lucene Index store of size 6 GB,10 GB,10 GB of records using MultiReader class. here is the following code snippet: Directory indexDir2 = ...
Sebastin
Sep 4, 2007 at 10:20 am
Oct 26, 2007 at 9:17 am -
In a multithread app like web app, a shared IndexSearcher could throw a AlreadyClosedException when another thread is trying to update the underlying IndexReader by closing the shared searcher after ...
Jay Yu
Sep 19, 2007 at 5:23 pm
Sep 25, 2007 at 7:56 pm -
Hi all, Can anyone explain what is the FieldSelector and the usage or benefits of this structure? I read the javadocs but I can't get for what goal it is provided in Lucene. Thanks in advance -- ...
Mohammad Norouzi
Sep 12, 2007 at 9:13 am
Sep 15, 2007 at 10:40 pm -
Hi I have a problem in getting correct result from Lucene, consider we have an index containing documents with fields "field1" and "field2" etc. now I want to have documents in which their field1 are ...
Mohammad Norouzi
Sep 17, 2007 at 9:41 am
Oct 1, 2007 at 3:26 pm -
Hi, I have about 40 indices which range in size from 10MB to 700MB. There are quite a few stored fields. To get an idea of the document size, I have about 400k documents in the 700MB index. Depending ...
Nikhil Chhaochharia
Sep 20, 2007 at 7:51 am
Sep 21, 2007 at 10:50 am -
Hi: Is there a way to added custom signature data to a lucene index, e.g data version etc? Thanks -John
John Wang
Sep 25, 2007 at 10:51 pm
Sep 27, 2007 at 6:23 pm -
Hello Everyone, I want to search 'abc-d' as exact keyword not 'abc d'. KeywordAnalyzer can be used for this purpose. StandradAnalyzer create different tokens for 'abc-d' as 'abc' and 'd'. But I can ...
Laxmilal Menaria
Sep 10, 2007 at 12:29 pm
Sep 25, 2007 at 7:24 am -
This sounds like a simple problem but i cannot for the life of me figure it out. Am running Fedora 7, JDK 1.6, and Tomcat 6.0 (although not being used for this). I download Lucene and followed the ...
Warnockm
Sep 19, 2007 at 3:18 pm
Sep 19, 2007 at 7:13 pm -
Hi All, One thing that i understand about IndexReader is that for subsequent queries, results come fast as the IndexReader needs to be warmed up. According to this, I am trying to find out the ...
Shailendra Mudgal
Sep 17, 2007 at 12:22 pm
Sep 18, 2007 at 7:31 am -
Hi all, In some custom highlighting, I often write a code like this: Set<Term matchedTerms = new HashSet<Term (); query.rewrite(reader).extractTerms(matchedTerms); With this code the Term Set gets ...
Rafael Rossini
Sep 4, 2007 at 9:02 pm
Sep 6, 2007 at 9:59 pm -
Hello, We're starting a new project, which basically catalogs everything we have in the department (different objects with different metadata), and as I used Lucene before, I'm preparing a ...
Guilherme Barile
Sep 3, 2007 at 1:47 pm
Sep 4, 2007 at 5:38 pm -
I am using SnowballAnalyzer with Hibernate search. I am using it to search phrases in a database. It only seems to return the stemmed version of any query. So for example, I have two phrases in the ...
Galactikuh
Sep 21, 2007 at 7:03 pm
Sep 24, 2007 at 4:48 pm -
Hi All, I have a search form which has an input area for key search and also three optional select boxs *Catagory, Department and Year. * My question is how can I filter the results if users select a ...
M.K
Sep 10, 2007 at 8:03 pm
Sep 11, 2007 at 4:55 pm -
Default as in StandardAnalyzer? "Stuff happens" with StandardAnalyzer. I'd recommend that you use something really simple like WhitespaceAnalyzer for something like this, or possibly create your own ...
Erick Erickson
Sep 23, 2007 at 1:47 pm
Sep 30, 2007 at 11:30 pm -
Hi, I'm working on an application which requires a complex scoring (based on semantics analysis). The scoring must be highly configurable, and I've found ways to do that, but I'm facing a discrete ...
Melix
Sep 11, 2007 at 2:17 pm
Sep 17, 2007 at 9:35 pm -
Hello everyone, I noticed that when updating a large index with IndexModifier (lots of delete+add), the bottlenek was the delete. If I only add, speed is at least multiplied by 50. From what i have ...
Antoine Baudoux
Sep 22, 2007 at 9:24 pm
Sep 23, 2007 at 11:18 am -
Hi, I have a doubt on proximity search. Is the query "cat dog"~6 same as (cat dog)~6 ? I think both case will search for "cat" and "dog" within 6 words each other. But I am getting different number ...
Sonu SR
Sep 20, 2007 at 1:55 pm
Sep 21, 2007 at 1:15 pm -
Hi everyone, There is a question about the document’s length and search efficiency. Think of this situation: Two ways to index some html pages(ignore some information): one is both store and index ...
Jarvis
Sep 21, 2007 at 6:24 am
Sep 21, 2007 at 9:53 am -
Hi I have query about storing hostname and IP information in lucene, For eg: In my Application I have some field with name host. In my App sometimes i get value as host name and sometimes as ...
AnkitSinghal
Sep 10, 2007 at 1:53 pm
Sep 11, 2007 at 8:21 pm -
Hello everyone, I have indexed a mysql database using Lucene2.0. It was taking less than 2 minutes for 14000 records. Then I indexed the same data using Lucene2.2. It took about 4 minutes. I got ...
Laxmilal Menaria
Sep 7, 2007 at 12:41 pm
Sep 8, 2007 at 4:32 am -
I'm trying to find a query that would boost a document based on a field in the document. I have a simple index with title, description, date, ... I also have a field called vote. I want items that ...
Adam Ruggles
Sep 5, 2007 at 3:38 pm
Sep 5, 2007 at 5:02 pm -
Hi, I have an index which contains two very distinct types of fields: - Some fields are large (many term documents) and change fairly slowly. - Some fields are small (mostly titles, names, anchor ...
Tim Sturge
Sep 27, 2007 at 11:14 pm
Sep 29, 2007 at 1:08 am -
Hi, I'm working my way through the Lucene In Action book, and there is one thing I need explained that I didn't find there; While wildcard queries are potentially slower than ordinary term queries, ...
John Byrne
Sep 26, 2007 at 8:48 am
Sep 26, 2007 at 10:03 am -
Hi, I have an optimized compound index and I want to transform it to standard format. I tried to optimize using the standard format but I had no luck.. Is there another way ? I don't want to re-index ...
Bogdan Ghidireac
Sep 24, 2007 at 12:39 pm
Sep 24, 2007 at 2:26 pm -
2-3G index data with 20M records, and each record has 10 or more fields, 3-5 fields are group fields, which I want to count them for returned results after searching. These group fields contains ...
Newbieoflucene
Sep 22, 2007 at 11:32 am
Sep 24, 2007 at 1:41 am -
Hello Folks, I wanted to stay away from storing text in the indexes in order to keep them smaller. I have a requirement now though to provide highlighting and, more so, fragments of the content so ...
Michael J. Prichard
Sep 20, 2007 at 9:39 pm
Sep 21, 2007 at 8:11 pm -
I have set up a search result made up of a resultBean object containing the information that I am fetching. Currently it is sorted by score (relevance) which is great and what I want. However, I have ...
Anorman
Sep 18, 2007 at 4:09 pm
Sep 18, 2007 at 4:28 pm -
Hi- The page http://lucene.apache.org/java/docs/queryparsersyntax.html does not mention that \uNNNN Unicode syntax is supported. For example, \u0048\u0045\u004c\u004c\u004f is HELLO. Please add this ...
Lance Norskog
Sep 14, 2007 at 8:08 pm
Sep 15, 2007 at 2:44 am -
-- Devinder
Devinder Singh
Sep 14, 2007 at 4:22 am
Sep 14, 2007 at 5:24 am -
If I have a tokenized unstored field in a document, and I want to transfer the document to another index, is it possible to carry of the tokenization with terms? ...
Dan Luria
Sep 12, 2007 at 9:07 pm
Sep 13, 2007 at 9:06 pm -
Hi every body: My question is if there is an api function of lucene to obtain similar documents to other document comparing the term frequence vector of a field ??? I supposed a lot of people have ...
Ariel
Sep 11, 2007 at 3:51 pm
Sep 12, 2007 at 8:44 pm -
Hi, I have an index which contains more than 20K documents. Each document has the following structure : field : ID (Index and store) typical value - "1000" field : parameterName(index and store) ...
Makkhar
Sep 6, 2007 at 11:41 am
Sep 6, 2007 at 9:59 pm -
Dear all, I am new to Lucene, am trying with the basics. Basically I created sample text files with fields as follows: textid 17 pubdate 63/01/04 pageid 20 I have been trying to edit ...
Blueyben
Sep 3, 2007 at 4:27 pm
Sep 4, 2007 at 5:14 am -
Hi all, I'm developing a search tool for a web site using lucene. One issue i need you to clarify is where we should store the generated lucene indexes ? lucene provides a file system storage method ...
Othman
Sep 27, 2007 at 9:52 pm
Sep 29, 2007 at 9:34 pm -
Hi every body: I would like to know how to change the similarity function of lucene to extends the posibilities of searching and make it more powefull. Have somebody made this before ? Could you help ...
Ariel
Sep 24, 2007 at 9:24 pm
Sep 28, 2007 at 1:25 pm -
Hi All I m facing problems in setting up lucene. kindly some guy guide me in this
Liaqat Ali
Sep 25, 2007 at 3:03 pm
Sep 25, 2007 at 3:23 pm -
We have an application that performs searches against a Lucene based index and also against a Windows Desktop Search based index. For simple queries we'd like to offer our users a consistent ...
Martin Bayly
Sep 25, 2007 at 1:05 am
Sep 25, 2007 at 7:40 am -
From: J. Delgado <jdelgado@lendingclub.com Date: Sep 13, 2007 7:27 PM Subject: Oracle-Lucene integration (OJVMDirectory and Lucene Domain Index) - LONG To: java-dev@lucene.apache.org Cc: ...
Marcelo Ochoa
Sep 14, 2007 at 1:57 pm
Sep 20, 2007 at 2:11 pm -
Hello All I m new to the field of Information Retrieval and now working to develop search engine for language like Arabic and Urdu. Kindly guide me in this regard that how can Lucene be utilized for ...
Liaqat Ali
Sep 18, 2007 at 9:24 pm
Sep 18, 2007 at 11:33 pm -
Hi, Standard tokenizer works pretty well for me... but i found one problem with my usage... I want to tokenize..."TheRing6,Proposal6,GuyandGirl6" as a three saparate tokens.. while standard analyzer ...
Bhavin Pandya
Sep 17, 2007 at 2:51 pm
Sep 18, 2007 at 10:58 am -
Hi All, I have made some changes in my Lucene source, so that values of numeric fields to be treated as numbers but not as Strings. After testing everything seems to work correctly, but I still would ...
Ivan Vasilev
Sep 13, 2007 at 5:20 pm
Sep 14, 2007 at 12:27 pm -
Hi, I have this exception there are more terms than documents in field "Title", but it's impossible to sort on tokenized fields. I'm try to sort the result by Title and the field title is ...
Spinergywmy
Sep 10, 2007 at 11:15 am
Sep 14, 2007 at 1:52 am -
I have to change lucene code for some reason. I changed the source code of the lucene and ran the ant command on build.xml. it created a jar file in build directory then i added the jar file to my ...
Sandeep chawla
Sep 13, 2007 at 2:05 pm
Sep 13, 2007 at 3:48 pm -
Hi folks! I'm using Lucene to provide search on my application. The final query is a BooleanQuery with many fields, there are fields where I'll look for the entered keyword and some others to ...
Alice
Sep 10, 2007 at 7:00 pm
Sep 11, 2007 at 1:17 pm -
Hello Everyone, I have created a Index Application using Java lucene 2.0 in java and Lucene.Net 2.0 in VB.net. Both application have same logic. But when I have indexed a database with 14000 rows ...
Laxmilal Menaria
Sep 10, 2007 at 1:00 pm
Sep 10, 2007 at 6:27 pm -
This question has been asked numerous times here. But the answer has never been satisfactory. Can someone answer it full and final, please ? If you get back a document as a search hit. How do you ...
Makkhar
Sep 10, 2007 at 8:13 am
Sep 10, 2007 at 11:58 am -
Hi all, I'd want to know the best way to look for strange encodings on a Lucene index. i have several inputs where input can have been encoded on different sets. I not always know if my guess about ...
Poeta simbolista
Sep 4, 2007 at 2:39 pm
Sep 5, 2007 at 4:12 pm -
what is the problem when casing "no terms in field dateTime - cannot determine sort type" exception? after i see this exception, Luke can not open this index, maybe the index file was broken,so is ...
吴迪
Sep 30, 2007 at 5:05 am
Sep 30, 2007 at 4:38 pm -
I'm considering using complete class xpaths as field names. These might end up beeing several hundred letters long and contain some wierd letters. Should I expect running in to problems? Field names ...
Karl Wettin
Sep 19, 2007 at 12:51 pm
Sep 19, 2007 at 5:16 pm -
I want get BooleanFilter contains two RangeFilters from query string. Can I use FilterQuery to get RangeFilter? example: my query string: field1:[0 TO 100] AND field2:[1000 TO 2000] BooleanFilter I ...
Scott Tiger
Sep 18, 2007 at 6:32 pm
Sep 18, 2007 at 10:26 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 73 |
posts | 337 |
users | 101 |
website | lucene.apache.org |
101 users for September 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)