Re: Fwd: Lucene benchmarks

2003-01-06 Thread Robert A. Decker
is it developed? Is it a Java distribution? A C app? C++, etc? hmm... I just saw the 'Details' worksheet that you sent. Very interesting. So, the Inktomi app is a java app? Or was that just the client? thanks, Robert A. Decker http://www.robdecker.com/ http://www.planetside.com/ On Mon, 6 Jan

Fun project?

2002-11-20 Thread Robert A. Decker
this would be cool I'd be willing to work on this with you. thanks, Robert A. Decker http://www.robdecker.com/ http://www.planetside.com/ -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: User Base

2002-10-25 Thread Robert A. Decker
Your boss should be very worried about the software being brought into your projects - not because of security but because of viral licenses. The GPL is particularly heinous. The apache and FreeBSD licenses are excellent. Take a look at:

has this exception been seen before

2002-09-18 Thread Robert A. Decker
I'm wondering if the following looks familiar to anyone. This comes up at times when calling optimize on an index. com.medicalhost.marvinfoundation.EOIndexManager.editingContextSavedChanges processUpdated e:java.lang.ArrayIndexOutOfBoundsException : 99 = 12

RE: is this possible in a query?

2002-08-01 Thread Robert A. Decker
-indexing (unfortunately) but it does save you from writing a whole new analyzer. Nader Henein -Original Message- From: Robert A. Decker [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 6:35 AM To: Lucene Users List Subject: Re: is this possible in a query? I think this may

Re: is this possible in a query?

2002-07-31 Thread Robert A. Decker
and searchable, but will not be tokenized. --dmg - Original Message - From: Robert A. Decker [EMAIL PROTECTED] Date: Wednesday, July 31, 2002 5:07 pm Subject: is this possible in a query? I have a Text Field named product. Two of the products are: Cathflo OrthoMed OrthoMed When

An OT question for someone with javacc experience

2002-06-30 Thread Robert A. Decker
I've asked the following question on the javacc mailing list, but it appears as if the activity on that list has completely stopped as they are open sourcing the code... Since lucene uses javacc is there anyone here that understands javacc? I'm starting to 'get' it, but I'm still having some

Re: QueryParser query inside a Boolean query?

2002-06-04 Thread Robert A. Decker
I've narrowed my problem a bit, but I'm still not sure why it's behaving this way. It seems that if I call QueryParser like: Query query = QueryParser.parse(value, fieldName, fragmentAnalyzer); where: value=OxyMed fieldName=text and fragmentAnalyzer is my analyzer to be run on the value. In

which tokenizer removes * characters?

2002-06-04 Thread Robert A. Decker
It seems that one of the analyzers that comes with lucene removes * characters. It's either the StandardFilter, LowerCaseFilter, or PorterStemFilter. However, it doesn't seem to be documented that one of these would remove that character... Does anyone have a good strategy for allowing users to

Re: searching with wild cards ignoers analyzer?

2002-06-04 Thread Robert A. Decker
I read through the faq, but missed that one... Something to add to that is that this is true for wildcard queries, prefix queries, and fuzzy queries. thanks, rob http://www.robdecker.com/ http://www.planetside.com/ On Tue, 4 Jun 2002, Otis Gospodnetic wrote: Dobro jutro, Dario, maybe

QueryParser query inside a Boolean query?

2002-06-03 Thread Robert A. Decker
I'm having a problem with my queries that I don't quite understand. Say I create a Query object using QueryParser - this query lets the user add wildcards, etc. Then, I create another Query object using, for example, a TermQuery. I then put both of these into a BooleanQuery and use that

Re: QueryParser query inside a Boolean query?

2002-06-03 Thread Robert A. Decker
QueryParser and post added BooleanQuery. --Peter On 6/3/02 11:38 AM, Robert A. Decker [EMAIL PROTECTED] wrote: I'm having a problem with my queries that I don't quite understand. Say I create a Query object using QueryParser - this query lets the user add wildcards, etc. Then, I

Re: How to get number of indexed documents non-programatically?

2002-05-09 Thread Robert A. Decker
:Non-ISO extended-ASCII text, with no line terminators _6p.f3:MP32, Mono _6p.fdt: data _6p.fdx: data _6p.fnm: data _6p.frq: data _6p.prx: data _6p.tii: data _6p.tis: data deletable: ASCII text, with no line terminators segments: data Otis --- Robert A. Decker [EMAIL

Re: Cannot compile Lucene

2002-04-24 Thread Robert A. Decker
what to what? I'd just like to document that somewhere, that's why I'm asking... Otis --- Robert A. Decker [EMAIL PROTECTED] wrote: I got it working under Project Builder. You just have to fix up the exceptions yourself. Also, you'll get some warnings (121 warnings to be exact) during

Re: how to update index

2002-04-01 Thread Robert A. Decker
jguru tells you how to do individual documents, but not the entire index. What about setting the flag when you create the IndexWriter to true? What happens if the index already exists? Do you get an exception, or does it write over the current index? You could always just delete the directory...

Getting the terms that matched the HitDoc?

2002-03-29 Thread Robert A. Decker
I've been looking around the org.apache.lucene.search.* code and can't seem to find an answer to this. I would like to present the terms that matched for each document in the Hits. For example, to the user it would look like: *** Search

Re: Getting the terms that matched the HitDoc?

2002-03-29 Thread Robert A. Decker
isn't the most efficient method but it should work. Nathan Robert A. Decker wrote: I've been looking around the org.apache.lucene.search.* code and can't seem to find an answer to this. I would like to present the terms that matched for each document in the Hits. For example

Field.Text arguments

2002-03-27 Thread Robert A. Decker
I'm confused about using Fields. Here's the two methods that are confusing me: public static final Field Text(String name, Reader value) public static final Field Text(String name, String value) The difference is that one takes a reader and the other a string. I have a field that will have

Re: Field.Text arguments

2002-03-27 Thread Robert A. Decker
that is not stored. i dont remember the documentation exactly, but this should be possible passing the right parameters to the field constructor. regards joe Robert A. Decker [EMAIL PROTECTED] writes on Thu, 28 Mar 2002 00:22:36 +0100 (MET): I'm confused about using Fields. Here's

Older versions of Lucene?

2002-03-21 Thread Robert A. Decker
I'm on Java 1.1.8, and can't upgrade beyond that for quite some time due to testing requirements. I've managed to compile in and use the 1.2 StringBuffer class that is required by Lucene. However, I'm getting tons of 'Integer constant out of range' errors when building. For example:

TokenManager's longs too long

2002-03-21 Thread Robert A. Decker
I'm stuck on jdk 1.1.8 and can't upgrade for some time. I'm using javacc to create some java code from a .jj file provided by the Lucene project at lucene.jakarta.org. I'm runnig into a problem where the long data types found in the XXXTokenManager.java files are too long for my version of

Need pointers on using a very small part of Lucene

2002-03-14 Thread Robert A. Decker
I would like to use a very small part of the functionality of Lucene, but need some pointers on which classes I should start looking at first. What I want to do is pass to a Lucene method some text, and have it return the text that it would normally put into the index. (I'll then take that text

Re: Need pointers on using a very small part of Lucene

2002-03-14 Thread Robert A. Decker
into the analyzer. --Peter On 3/14/02 11:20 AM, Robert A. Decker [EMAIL PROTECTED] wrote: I would like to use a very small part of the functionality of Lucene, but need some pointers on which classes I should start looking at first. What I want to do is pass to a Lucene method some

Re: Need pointers on using a very small part of Lucene

2002-03-14 Thread Robert A. Decker
I must say, lucene is pretty damn cool. I now have it working and filtering stuff using a custom analyzer I built named FragmentAnalyzer. It works like a StandardAnalyzer but also uses the PorterStemFilter. I'm very impressed with its speed. I just have one more question - how do I remove