RE: Lucene 1.4 RC 3 issue with temp directory

2004-05-17 Thread Eric Isakson
Your catalina.bat script is guessing your CATALINA_HOME environment variable since you don't have one set and is setting java.io.tmpdir based on that guess. You could work around this by setting a CATALINA_HOME environment variable or setting the system property org.apache.lucene.lockdir. That d

Can documents be appended to?

2004-05-17 Thread wallen
Is it possible to append to an existing document? Judging by my own tests and this thread, NO. http://issues.apache.org/eyebrowse/[EMAIL PROTECTED] he.org&msgNo=3971 Wouldn't it be possible to look up an individual document (based upon a uid of sorts), then load the Fields off of the old one, del

Lucene 1.4 RC 3 issue with temp directory

2004-05-17 Thread Grant Ingersoll
Hi All, I just upgraded to 1.4 RC 3 and am now unable to open my index. I am getting: java.io.IOException: The system cannot find the path specified at java.io.WinNTFileSystem.createFileExclusively(Native Method) at java.io.File.createNewFile(File.java:828) at org.apache.

RE: SELECTIVE Indexing

2004-05-17 Thread Otis Gospodnetic
Lucene has no plug-in architecture, and does not assume you are indexing web pages, so your use of JTidy is all up to you, and independent of Lucene. Just feed Lucene the resulting text that you want to index and search. Otis --- Karthik N S <[EMAIL PROTECTED]> wrote: > Hi > > Can I Use TIDY [a

SearchBlox J2EE Search Component Version 1.3 released

2004-05-17 Thread Robert Selvaraj
SearchBlox is a J2EE Search Component that delivers out-of-the-box search functionality for quick integration with your websites, applications, intranets and portals. SearchBlox uses the Lucene Search API and incorporates integrated HTTP/HTTPS and File System crawlers, support for various docum

RE: hierarchical search

2004-05-17 Thread Fredrik Lindner
Hi Matt, thanks for your reply! Indeed your proposed solution would work for the simple case I described, however I failed to mention that I must be able to combine the described queries to a complex one and there for can't make any assumptions based on size attribute. I'm sorry If I wasted your t

RE: SELECTIVE Indexing

2004-05-17 Thread Karthik N S
Hi Can I Use TIDY [as plug in ] with Lucene ... with regards Karthik -Original Message- From: Viparthi, Kiran (AFIS) [mailto:[EMAIL PROTECTED] Sent: Monday, May 17, 2004 3:27 PM To: 'Lucene Users List' Subject: RE: SELECTIVE Indexing Try using Tidy. Creates a Document of the html and

RE: multivalue fields

2004-05-17 Thread Morus Walter
Alex McManus writes: > > > Maybe your fields are too long so that only part of it gets indexed (look > at IndexWriter.maxFieldLength). > > This is interesting, I've had a look at the JavaDoc and I think I > understand. The maximum field length describes the maximum number of unique > terms, not t

Re: hierarchical search

2004-05-17 Thread Matt Quail
Fredrik, I would tackle your problem like this: Say that that field you want to index is "path". I would turn this into *three* indexed fields: 1) multiple path prefixes ("pre-paths") 2) multiple path suffixes ("post-paths") 3) the number of "components" in the path ("path-size"). For example, for

RE: SELECTIVE Indexing

2004-05-17 Thread Viparthi, Kiran (AFIS)
Try using Tidy. Creates a Document of the html and allows you to apply xpath. Hope this helps. Kiran. -Original Message- From: Karthik N S [mailto:[EMAIL PROTECTED] Sent: 17 May 2004 11:59 To: Lucene Users List Subject: SELECTIVE Indexing Hi all Can Some Body tell me How to Index

SELECTIVE Indexing

2004-05-17 Thread Karthik N S
Hi all Can Some Body tell me How to Index CERTAIN PORTION OF THE HTML FILE Only ex:- with regards Karthik - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: multivalue fields

2004-05-17 Thread Alex McManus
> Maybe your fields are too long so that only part of it gets indexed (look at IndexWriter.maxFieldLength). This is interesting, I've had a look at the JavaDoc and I think I understand. The maximum field length describes the maximum number of unique terms, not the maximum number of words/tokens.

hierarchical search

2004-05-17 Thread Fredrik Lindner
Hi all! I'm currently developing an application in which text searching is a main component. Among other things, a document will contain a field denoting hierarchical information. The information is stored as a string using the common path syntax, /x/y/z/etc/... I would like to be able to search