Search Discussions
-
I'm looking at StopFilter.java right now... I did a kill -3 java and a number of my threads were blocked here: "ksa-task-thread-34" prio=1 tid=0xad89fbe8 nid=0x1c6e waiting for monitor entry ...
Kevin A. Burton
Mar 9, 2004 at 1:50 am
Mar 15, 2004 at 5:00 am -
Hi! I want to store numbers (id) in my index: long id = 1069421083284; doc.add(Field.UnStored("in", String.valueOf(id))); But searching for "id:1069421083284" doesn't return any hits. Well, did I ...
Lucene
Mar 5, 2004 at 11:18 am
Mar 10, 2004 at 4:20 pm -
Hey everyone. My document object for my lucene index has a "url" field. I have created "url" as a Text field. The problem I am having is that searches with a "url" that end with a number, e.g. ...
Morris Mizrahi
Mar 13, 2004 at 7:07 am
Apr 3, 2004 at 4:21 pm -
As I've stated in my earlier mail, I like this change. More importantly, could this become a "standard" way of changing configurations at runtime? For example, the default merge factor could also be ...
Stephane James Vaucher
Mar 3, 2004 at 8:35 pm
Mar 19, 2004 at 10:26 am -
I need to get solution to following error ASAP. Please help me with this. I'm getting following error returned from call to <snip try { searcher = new IndexSearcher( IndexReader.open(indexName) ...
Charlie Smith
Mar 26, 2004 at 2:34 am
Mar 30, 2004 at 5:06 pm -
Was there any conclusion to message: http://issues.apache.org/eyebrowse/[email protected]&msgNo=6762 Regarding "Ordering by a Field"? I have a similar need and didn't ...
Chad Small
Mar 25, 2004 at 3:41 am
Mar 26, 2004 at 3:38 pm -
Hello, How can I format a query to get a hit? I'm using the StandardAnalyzer() at both index and search time. If I'm indexing a field like this: ...
Chad Small
Mar 23, 2004 at 5:00 pm
Mar 24, 2004 at 8:58 pm -
thanks Erik. Ok this is my official lobby effort for the release of 1.4 to final status. Anyone else need/want a 1.4 release? Does anyone have any information on 1.4 release plans? thanks, chad. ...
Chad Small
Mar 26, 2004 at 7:52 pm
Mar 30, 2004 at 5:31 pm -
Hello Lucene Users, I have a web application using Oracle as the database and I want to add fulltext query capablities. My idea was to extend the existing insert, update and delete methods of my ...
Michael Steiger
Mar 1, 2004 at 11:24 am
Mar 4, 2004 at 8:12 pm -
Is there any way to build a query where the occurrence of a particular Term (in a Keyword field) causes the rank of the document to be decreased? I have various types of documents, and some of them ...
Boris Goldowsky
Mar 17, 2004 at 8:13 pm
Mar 29, 2004 at 9:55 pm -
Hi, I'm seeking any kind of advice that I can find to solve a problem I've run into with using lucene. I'm integrating lucene as an alternative to other methods of indexing and searching that already ...
Dennis Thrysøe
Mar 19, 2004 at 10:39 am
Mar 20, 2004 at 2:58 am -
I'm playing with this package: http://home.clara.net/markharwood/lucene/highlight.htm Trying to do hit highlighting. This implementation uses another Analyzer to find the positions for the result ...
Kevin A. Burton
Mar 31, 2004 at 12:57 am
Apr 1, 2004 at 2:46 am -
Hallo, I run in following problem. Perhaps somebody can help me. I have a index with different ids in the same field something like <s 00000000 <s 45678565 <s 87854546 Situation: I have different ...
Joachim Schreiber
Mar 23, 2004 at 3:04 pm
Mar 23, 2004 at 6:00 pm -
I am using a CJKAnalyzer from apache sandbox , I have set the java file.encoding setting to SJIS and i am able to index and search the japanese html page . I can see the index dumps as i expected , ...
Chandan Tamrakar
Mar 16, 2004 at 8:31 am
Mar 22, 2004 at 11:58 am -
We're using lucene with one large target index which right now is 5G. Every night we take sub-indexes which are about 500M and merging them into this main index. This merge (done via ...
Kevin A. Burton
Mar 29, 2004 at 5:50 am
Mar 30, 2004 at 5:04 pm -
Lucene reacts pretty badly to non-wellformed queries, not throwing a checked/unchecked Exception but throwing an Error. The error message is also unintelligible to a user (non-developer). How are ...
Kelvin Tan
Mar 5, 2004 at 8:20 am
Mar 6, 2004 at 6:52 am -
where is a good starting place to find out how to use FuzzyQuery? I don't know too much about Fuzzy logic or set theory in general so pointers to that kind of info would be helpful too. what do some ...
Supun Edirisinghe
Mar 1, 2004 at 10:36 pm
Mar 3, 2004 at 9:49 pm -
Hello All, I've come across my first gotcha with the system property "java.io.tmpdir" as the lock directory. Over here at APS we run lucene in two different servlet containers on two different ...
Michael Duval
Mar 2, 2004 at 9:11 pm
Mar 3, 2004 at 8:09 pm -
As a note of warning: I did find StandardTokenizer to be the major culprit in my tokenizing benchmarks (avg 75ms for 16k sized docs). I have found I can live without StandardTokenizer in my apps. A ...
Markharw00d
Mar 31, 2004 at 6:04 pm
Apr 2, 2004 at 12:56 am -
Anyone written a simple UNIX command-line indexing script which will read a bunch off different kinds of docs and index them? I'd like to make a cron job out of this so as to be able to come back and ...
Charlie Smith
Mar 13, 2004 at 4:46 pm
Mar 26, 2004 at 5:41 pm -
Is there any documentation (other than that in the source) on how to use the new SpanxxQuery features? Specifically: SpanNearQuery, SpanNotQuery, SpanFirstQuery and SpanOrQuery? Regards, Terry
Terry Steichen
Mar 20, 2004 at 1:00 am
Mar 23, 2004 at 5:03 pm -
I'm curious to find out what others are doing in this situation. I have two boxes... the indexer and the searcher. The indexer is taking documents and indexing them and creating indexes in a ...
Kevin A. Burton
Mar 11, 2004 at 10:29 am
Mar 12, 2004 at 12:26 pm -
Hi Everyone. I am trying to figure out how create a query that matches A ? B Where ? is exactly one token. Can anyone tell me how to do that? Obviously it's easy to match 'A * B' where '*' is 0 or 1 ...
Jochen Frey
Mar 4, 2004 at 7:29 pm
Mar 5, 2004 at 9:17 am -
Dear developers! The user using RussianAnalyzer writes to you of Lucene. There is one problem at work only with it of Analyzer it is parameter of the Russian coding (you it know as the set of the ...
Vladimir Yuryev
Mar 17, 2004 at 1:26 pm
Mar 30, 2004 at 3:57 pm -
Hi everyone, We have a database where in one table it contains an id and a name. (like 1,Human 2,Man 3,Dutch) The second table contains an id, a relationId and a reference to the previous table. So ...
Martin van den Bemt
Mar 18, 2004 at 4:03 pm
Mar 18, 2004 at 7:32 pm -
I am using Lucene 1.3 final and am having an error that I can't seem to shake. Basically, I am updating a Document in the index incrementally by calling an IndexReader to remove the document. This ...
Gabe
Mar 15, 2004 at 6:23 pm
Mar 15, 2004 at 9:19 pm -
Hello ! version : lucene 1.3 final I search : comptable, I find the document. I search : compt*, I find so but : comp*, I don' find my document. Have you meet this problem ? Thanks excuse me for my ...
Stephane NOBILET
Mar 9, 2004 at 4:39 pm
Mar 9, 2004 at 5:17 pm -
Hello, I have now partly integrated my Oracle based web-application with Lucene but there is one search result I do not understand. I'm using the Standardanalyzer for Document.add and for the ...
Michael Steiger
Mar 2, 2004 at 10:15 pm
Mar 6, 2004 at 8:31 am -
I'm experiencing some very puzzling search behavior. I am using the CVS head I pulled about a week ago. I use the StandardAnalyzer and QueryParser. I have a collection of XML documents indexed. One ...
Terry Steichen
Mar 31, 2004 at 2:49 pm
Apr 1, 2004 at 5:03 pm -
Seems to only make sense to allow a caller to find the searchables a MultiSearcher was created with: --- MultiSearcher.java.bak 2004-03-30 14:57:41.660109642 -0800 +++ MultiSearcher.java 2004-03-30 ...
Kevin A. Burton
Mar 30, 2004 at 11:00 pm
Apr 1, 2004 at 2:51 am -
Hi ! I have made latest update from lucene CVS, in which build.xml has problems: Buildfile: /home/vyuryev/workspace/jakarta-lucene/build.xml BUILD FAILED: ...
Vladimir Yuryev
Mar 29, 2004 at 6:04 am
Mar 30, 2004 at 6:49 am -
I have a 7G index. A query for a random term comes back fast (300ms) when I'm not using a DateFilter but when I add the DateFilter it takes 2.6 seconds. Way too long. I assume this is because the ...
Kevin A. Burton
Mar 29, 2004 at 9:26 am
Mar 29, 2004 at 10:09 pm -
I have some code that creates a lucene index. It has been working fine with lucene-1.3-rc1.jar but I wanted to upgrade to lucene-1.3-final.jar. I did this and the indexer breaks. I get the following ...
Dan
Mar 22, 2004 at 8:02 pm
Mar 23, 2004 at 9:04 am -
A discussion I had a while back had someone note (Doug?) that the decision to go with 32bit ints for document IDs was that on 32 bit machines that 64bits weren't threadsafe. Does anyone know how JDK ...
Kevin A. Burton
Mar 11, 2004 at 10:54 am
Mar 11, 2004 at 8:38 pm -
The standard pattern for updating an index - removing a document then re-adding the modified document to the index - is currently a significant performance bottleneck in my application. I sometimes ...
Chris Kimm
Mar 11, 2004 at 5:34 pm
Mar 11, 2004 at 7:26 pm -
I'm looking for information on the largest document collection that Lucene has been used to index, the biggest benchmark I've been able to find so far is 1MM documents. I'd like to generate some ...
Mark Devaney
Mar 10, 2004 at 3:25 pm
Mar 10, 2004 at 6:35 pm -
Hi, I've worked on a bit on the taglib and added an "index" and "field" tag for basic indexing capability, though I don't think it's really useful, apart from, in my case quick prototyping of web ...
Iskandar Salim
Mar 8, 2004 at 8:49 am
Mar 9, 2004 at 4:40 am -
Hi all, I have incorporated highlighting package (http://home.clara.net/markharwood/lucene/highlight.htm) but I am worried about the following issue. If I want to display "body" field content’s best ...
Clandes Tino
Mar 2, 2004 at 6:19 pm
Mar 4, 2004 at 7:50 pm -
Are the javadocs available on the site? I'd like to see the javadocs for lucene-1.4 (specifically SpanQuery) somewhere on the lucene website. I've subscribed to the users mailing list, but I've never ...
Stephane James Vaucher
Mar 29, 2004 at 10:40 pm
Mar 30, 2004 at 7:25 am -
Hi All, Our company is looking for 2 java developer with strong Lucene experience to do some contract work. We're in Sydney, Australia. If anyone is interested plesaes email me direct ...
Anson Lau
Mar 28, 2004 at 2:24 pm
Mar 29, 2004 at 3:28 am -
I have a situation where I need to be able to find incomplete word matches, for example a search for the string 'ape' would return matches for 'grapes' 'naples' 'staples' etc. I have been searching ...
Tomcat Programmer
Mar 11, 2004 at 5:15 am
Mar 27, 2004 at 6:00 am -
Hello group, coming back to the discussion about probabilistic and vector space model (which occured here some time ago), I would like to ask something related. I only know the index structure Lucene ...
Karl Koch
Mar 19, 2004 at 5:24 pm
Mar 23, 2004 at 8:38 pm -
Does anyone know why the Hits class is final (thus preventing it from being subclassed)? Regards, Terry
Terry Steichen
Mar 21, 2004 at 11:59 am
Mar 22, 2004 at 3:31 pm -
Hello, I noticed that Lucene 1.3-final source builds a JAR file whose version number is "1.4-rc1-dev". What does this mean? Will 1.4-final build as "1.5-rc1-dev"? Just Curious, Jeff ...
Jeff Wong
Mar 11, 2004 at 1:37 am
Mar 11, 2004 at 2:51 am -
Hi, I've written a taglib for querying lucene indices and have uploaded the taglib at http://blog.javaxp.net/files/lucene-taglib.zip for anyone wanting to check it out. It's a hefty 903kb as it ...
Iskandar Salim
Mar 7, 2004 at 2:34 am
Mar 7, 2004 at 10:05 am -
Hi guys, I am relatively new to Lucene. Can lucene be used to speed-up search for a string in one huge file( ~ TerraBytes ) based on its libe numbers. Something like "grep -n <pattern <filename " ...
Prasen
Mar 5, 2004 at 2:25 pm
Mar 6, 2004 at 10:47 am -
---------------------------------------------------------- This email is confidential. If you are not the addressee tell the sender immediately and destroy this email without using, sending or ...
Harshavardhan Nm
Mar 29, 2004 at 9:03 am
Mar 30, 2004 at 5:13 am -
I want to create a knowledgebase but it needs to be something that does not require a server to run constantly (like with using jsp). I just needs to run on the Windows platform. Lucene works well ...
Pleasant, Tracy
Mar 24, 2004 at 4:54 pm
Mar 24, 2004 at 5:13 pm -
Hi, I have a field that has a dollar sign in it like this: abc$def I perform the following queries using the StandardAnalyzer: 1). myField:abc$def - work 2). myField:abc* - work 3). myField:abc$* - ...
Reece
Mar 18, 2004 at 1:09 am
Mar 18, 2004 at 7:06 pm -
Can anybody confirm that no guarantee is given that Fields retain their order within a Document? Version 1.3 seems to (although reversing the order on occasion). Doesnt seem likely but would be ...
Sam Hough
Mar 16, 2004 at 3:01 pm
Mar 18, 2004 at 6:20 pm
Group Overview
group | java-user |
categories | lucene |
discussions | 98 |
posts | 486 |
users | 107 |
website | lucene.apache.org |
107 users for March 2004
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)