Search Discussions
-
Hi, We are sharing a Lucene index in a Linux cluster over an NFS share. We have multiple servers reading and writing to the index. I am getting regular lock exceptions e.g. Lock obtain timed out: ...
Patrick Kimber
Jun 29, 2007 at 9:01 am
Sep 7, 2007 at 6:07 pm -
I have been working on extending the Highlighter with a new Scorer that correctly scores phrase and span queries. The highlighter is working great for me, but could really use some more banging on. ...
Mark Miller
Jun 19, 2007 at 10:40 pm
Aug 29, 2007 at 5:29 pm -
Hi, I'm developping an image database. Each lucene document representing an image contains (among other fields ): - a date field - a collection field containing the ID of the collection the image ...
Antoine Baudoux
Jun 15, 2007 at 2:52 pm
Jun 18, 2007 at 8:54 pm -
I'm looking at the new Payload api and would like to use it in the following manner. Meta-data is indexed as a special phrase (all terms at same position) and a payload is stored with the first term ...
Peter Keegan
Jun 27, 2007 at 2:46 pm
Jul 27, 2007 at 7:00 pm -
12
Pagination
Hi, does anyone knows how to do pagination on jsp page using the number of hits return? Or any other solutions? Do provide me with some sample coding if possible or a step by step guide. Sry if I'm ...Lee Li Bin
Jun 29, 2007 at 9:15 am
Jul 4, 2007 at 1:14 pm -
High, Is-it possible to update a document's field without deleting the document and add it again into the index?
WATHELET Thomas
Jun 27, 2007 at 7:46 am
Jul 1, 2007 at 10:50 am -
Hi, I would like to implement an AJAX search. Basically when user types in several characters, I will try to search the Lucene index and found all possible matching items. Seems I need to use ...
Chris Lu
Jun 8, 2007 at 1:32 am
Jun 13, 2007 at 1:07 pm -
Hi, I’m a new user to Lucene, and heard that it is a powerful tool for full text search and I’m planning to use it in my project for data storage purpose. Before the implementation, I could like to ...
Chew Yee Chuang
Jun 15, 2007 at 7:02 am
Jul 6, 2007 at 6:23 am -
Hi I am aware that with Lucene I can not do negative only queries such as -foo:bar But today I ran into an issue where I realized even queries such as +foo:bar +(-goobly:doo) also never return any ...
Antony Sequeira
Jun 15, 2007 at 1:07 am
Jun 19, 2007 at 1:13 am -
Hello,I just downloaded Lucene and tried running the demo. I seem to be okay up until I type in a query into the "Search Criteria" page and click on the "Search" button at the URL: ...
Lucene Help
Jun 12, 2007 at 7:11 am
Jun 13, 2007 at 3:40 pm -
Hi, I would like to know whether Standard Analyzer allows searching of chinese words? And in order to support chinese searching, is there any encoding needed in order to develop the application? I'm ...
Leelb
Jun 17, 2007 at 2:51 pm
Jun 22, 2007 at 10:37 am -
Hi, I wonder if this is possible: Return all Terms of a Field in the Index together with the number of occurances in all documents. E.g. have 10 Documents with the Field "author" in the index, 5 of ...
Benjamin Pasero
Jun 9, 2007 at 3:19 pm
Jun 11, 2007 at 9:32 pm -
Hi everyone, I am trying to remove several docs from search results each time I do query. The docs can be identified by an exteranl ids whcih are saved/indexed. I could use a Query or QueryFilter to ...
Yu
Jun 15, 2007 at 4:40 am
Jun 22, 2007 at 2:01 pm -
Hi. How can I access JavaCC?? Thanks -- View this message in context: http://www.nabble.com/JavaCC-Download-tf3958940.html#a11233766 Sent from the Lucene - Java Users mailing list archive at ...
Mahdi Rahimi
Jun 21, 2007 at 2:04 pm
Jun 30, 2007 at 5:20 pm -
My very simple analyzer produces tokens made of digits and/or letters only. Anything else is discarded. E.g. the input "smith,anna" gets tokenized as 2 tokens, first "smith" then "anna". Say I have ...
Renaud Waldura
Jun 13, 2007 at 11:13 pm
Jun 15, 2007 at 2:58 pm -
Hi! How can I restore the behavior of the old WildcardQuery under 2.1? I badly need 'cat???' to match 'cat' again just like in the older versions. I could modify my istance of lucene by removing ...
Tim Smith
Jun 6, 2007 at 7:48 am
Jun 7, 2007 at 1:17 pm -
Until recently I have only used Lucene as an index. I'm very interested to hear what you people have to say about using Lucene as the primary and only persistance layer in an application. I would ...
Karl wettin
Jun 27, 2007 at 12:20 am
Jun 30, 2007 at 11:31 am -
Hi, I am trying to use RAMDirectory as a buffer and am having some problems. I create indexes using FSDirectory directly and index directory contains the following files: bash-3.00$ ls ~/index/ ...
Tanya Levshina
Jun 21, 2007 at 11:35 pm
Jun 22, 2007 at 1:48 am -
Hello I've asked before on this issue, and I think I have more information now. I have in a lucene 1.4 index, some Field.Text fields stored. I've been focusing on the one called "name" In luke 0.7 , ...
John Powers
Jun 7, 2007 at 6:02 pm
Jun 19, 2007 at 8:29 pm -
What if I need to search for synonyms, but synonyms can be expanded to phrases of several words? For example, user enters query "tcp", then my application should also find documents containing phrase ...
Aliaksandr Radzivanovich
Jun 27, 2007 at 2:38 pm
Dec 7, 2007 at 9:23 pm -
Hi, We are currently running a Tomcat web application serving searches over our Lucene index (10GB) on a single server machine (Dual 3GHz CPU, 4GB RAM). Due to performance issues and to scale up to ...
Chun Wei Ho
Jun 28, 2007 at 1:50 pm
Jul 8, 2007 at 3:08 am -
Hi, I am trying to index msword documents. I've got things working but I do not think I am doing things properly. To index msword docs I use an extractor to extract the text. Then I write the text to ...
Jim shirreffs
Jun 8, 2007 at 5:24 pm
Jun 9, 2007 at 2:56 pm -
Hello all, In my application I want to perform a search over all the documents that are NOT in a certain subset, and I'm not sure how I should do it. Specifically, the application performs a search ...
Hilton Campbell
Jun 5, 2007 at 6:05 pm
Jun 8, 2007 at 12:48 pm -
Hi, I've just downloaded Lucene, tried demo and looked at the documentation. The Indexing and Searching work great and fast but I also need to display all the actual "hits": the lines from the files ...
Tanya Levshina
Jun 1, 2007 at 12:40 pm
Jun 1, 2007 at 4:22 pm -
I have an index in one file that has a size of abt 18GB of data When i run some queries on Luke the response comes in < 40 ms but the same when I use IndexSearcher gives me in 300ms -600 ms Any ...
Nott
Jun 28, 2007 at 4:04 pm
Jul 1, 2007 at 9:51 pm -
i m using lucene(org.apache.lucene) and i want the java code for parsing single character string.. my code is : QueryParser qp = new QueryParser("",analyser); String str = " track 9"; Query que = ...
Pratik shinghal
Jun 28, 2007 at 5:30 pm
Jun 29, 2007 at 9:10 pm -
Hi, I am using the PorterStemAnalyzer class (attached) to provide stemming for a Lucene index. To stem the terms in the index we use the following... //open an index writer in append mode IndexWriter ...
Robert Walpole
Jun 22, 2007 at 3:40 pm
Jun 22, 2007 at 9:42 pm -
HI, My requirement is to search multiple databases which are present on different machines all of which are indexed using lucene Can it be done using the web interface of lucene ? If yes what is the ...
Rajat mahajan
Jun 14, 2007 at 5:41 am
Jun 18, 2007 at 10:23 am -
Hi all, I was experimenting with queries using wildcard on an untokenized field and noticed that a query with both a starting and trailing wildcard, e.g. *abc*, gets parsed to the PrefixQuery *abc. I ...
Dontspamterry
Jun 11, 2007 at 9:34 pm
Jun 12, 2007 at 5:41 am -
Hey, I Think this is where I ask this. I'm pretty new to this so this is probably a dumb question. I'm using the StandardTokenizer class to turn a file into tokens. I then need to be able to later ...
John Paul Sondag
Jun 27, 2007 at 1:32 am
Jun 27, 2007 at 2:32 am -
Hi, I am using lucene in our site for index and search. We are creating the index with large collection of documents (XML). The program some times terminating without completing the index process. So ...
Sonu SR
Jun 25, 2007 at 11:17 am
Jun 26, 2007 at 4:28 am -
Hi, The Lucene FAQ at http://wiki.apache.org/lucene-java/LuceneFAQ mentions that the position of the matches in the text does not affect scoring. So is there anyway that I can make the position of ...
Jesse Prabawa
Jun 19, 2007 at 7:59 am
Jun 20, 2007 at 11:29 pm -
We're using a MultiSearcher to search against multiple lucene indexes which runs inside of a web application in jboss 4.0.4. We're also using a standalone app running in a different jboss server ...
Beard, Brian
Jun 19, 2007 at 12:59 pm
Jun 19, 2007 at 3:07 pm -
Hello everyone, I am lucene user and tried to implement pharse query, But now getting some logical problems in searching.. My index have 4 fields: Name, Address & City and 6 docs. i.e 1. "Laxmilal ...
Laxmilal Menaria
Jun 18, 2007 at 1:25 pm
Jun 19, 2007 at 4:44 am -
Hi, We are using Lucene as search engine and I have a question regarding the scoring of search results, I had given a example for it, Example :-- suppose we have four Items on which we have indexed, ...
Yatin Soni
Jun 14, 2007 at 4:51 pm
Jun 18, 2007 at 9:07 pm -
Hey all, As you can tell by the subject, interested in 'name searching' and 'nearby name' searching. Scenarios include Geneology and Similar-Person-from-Different-Datasources matchings. Assuming ...
Darren Hartford
Jun 29, 2007 at 3:41 pm
Jul 2, 2007 at 12:17 pm -
Hello, In my application I have to add documents to the index as follows: 1. build the document to add from a repository 2. obtain an IndexWriter 2. add document to index 4. write and optimize index, ...
Kai Weber
Jun 28, 2007 at 4:49 pm
Jul 1, 2007 at 9:42 pm -
Hi all, Is there any possibility to display Index values (ie) when we want to search a field we use, String test="9840836588" Document doc=new Document(); doc.add(new ...
Sebastin
Jun 24, 2007 at 7:13 am
Jun 25, 2007 at 5:49 pm -
We want to maintain a backup of our production index directory. We are using Lucene 2.0 v. The normal way to have backup is to run a small reindex script every 5 mins, which would pick up only those ...
Rajendranath, Divya
Jun 5, 2007 at 5:29 am
Jun 22, 2007 at 11:03 am -
Hi, I'm using standard tokenizer for both indexing and searching process.Myindexed value is like "emp-id Aq234 kaith creating document for search". I can get search results for the query ...
SK R
Jun 20, 2007 at 9:24 am
Jun 20, 2007 at 1:24 pm -
Hi All, i index my document using SimpleAnalyzer() when i search the Indexed field in the searcher class it doesnt give me the results.help me to sort out this issue. My Code: test="9840836598" ...
Sebastin
Jun 19, 2007 at 7:11 am
Jun 19, 2007 at 2:17 pm -
All, I need to store all the attributes of the document i index as part of the index. And I need to get the size of the files as close to 20% of the original size as possible. If anyone can help with ...
Lucenebuyer
Jun 7, 2007 at 4:49 am
Jun 19, 2007 at 5:35 am -
Hi All, I am trying to create a lucene query to search for companies based on areacode. The phone no. is stored in the lucene index in the form of '415-567-2323'. I need to create a query like ...
Harini Raghavan
Jun 12, 2007 at 10:21 am
Jun 12, 2007 at 8:43 pm -
Hello consider a query like this patientResult:[8 TO 9] this returns correct documents but patientResult:[8 TO 10] return nothing. and also this range [0.1 TO 10] returns results like 11, 10.8, 10.9 ...
Mohammad Norouzi
Jun 12, 2007 at 6:45 am
Jun 12, 2007 at 7:50 am -
Hi there, at the open-source project mmm we provide a generic search-solution based on lucene: http://m-m-m.sourceforge.net/maven/mmm-search/ This covers the typical gaps like indexing binary ...
Joerg Hohwiller
Jun 10, 2007 at 9:06 pm
Jun 12, 2007 at 5:21 am -
Hi, I'm new to Lucene...very new. I'd like to use Lucene to index a MySQL database (six tables, actually), and then use it to search the database in lieu of using SQL. I can't seem to find any sample ...
Lindsey Hess
Jun 7, 2007 at 9:39 pm
Jun 12, 2007 at 12:58 am -
Hi Everyone, I have a lucene index were I add a document with a set of metadata. In my system, all the fields in the metadata set needn't be there all the time for a given document. Say if I am ...
Dino
Jun 11, 2007 at 1:49 pm
Jun 11, 2007 at 2:31 pm -
I am trying to use a Filter Index Reader to provide access only to the subset of my archive for which a certain field contains one of a given list of values. The idea is to create a special term for ...
Lucene user
Jun 10, 2007 at 9:51 pm
Jun 11, 2007 at 6:28 am -
my indexfile to 8G when I optionze() the index.program is too slow . and some time IOException. And use TOO memory . xiaojun tong 010-64489518-613 tongxiaojun@msn.com www.feedsky.com
童小军
Jun 7, 2007 at 2:47 am
Jun 8, 2007 at 7:33 pm -
I'm running into the "WARN | Compass Scheduled Optimizer | AdaptiveOptimizer [book], will do it next time." messages more frequently, most likely due to the lucene index getting enormous. The ...
Moraleslos
Jun 6, 2007 at 5:48 pm
Jun 7, 2007 at 12:08 am
Group Overview
group | java-user |
categories | lucene |
discussions | 107 |
posts | 496 |
users | 127 |
website | lucene.apache.org |
127 users for June 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)