Re: java.io.IOException: Cannot delete deletable

2006-07-22 Thread Yiren Luo
Find out what cause this might be helpful. It might be a file system related issue because file.delete() acctually invokes fs.delete(this). It isn't file security related issue because a SecurityException would otherwise be thrown. --- yueyu lin <[EMAIL PROTECTED]> wrote: > Delete them manually.

Re: Special characher & ; : % index/search question

2006-07-22 Thread Yiren Luo
I think org.apache.lucene.analysis.WhitespaceAnalyzer would do it. --- Herbert Wu <[EMAIL PROTECTED]> wrote: > Hi, all, > > My document's title field contains standalone(not > contained inside a word) > special char such as &,:,%,; etc. With luke0.6 tool, > I found that these > chars are not ind

Special characher & ; : % index/search question

2006-07-22 Thread Herbert Wu
Hi, all, My document's title field contains standalone(not contained inside a word) special char such as &,:,%,; etc. With luke0.6 tool, I found that these chars are not indexed in the title field or any other place and hence not searchable. Is there any way to index these special chars for search

data gathering

2006-07-22 Thread Yiren Luo
I have some files located at both UNIX and WINDOWS platform. Would NFS mount and CIFS mount be sufficient as data gathering for indexing? Is there anyway to index data in the relational database? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

Re: java.io.IOException: Cannot delete deletable

2006-07-22 Thread yueyu lin
Delete them manually. On 7/22/06, Kiran Joisher <[EMAIL PROTECTED]> wrote: Hi, I am trying to re-create index from scratch. But I get this exception. I also close the IndexSearcher before doing this. java.io.IOException: Cannot delete deletable at org.apache.lucene.store.FSDirect

java.io.IOException: Cannot delete deletable

2006-07-22 Thread Kiran Joisher
Hi, I am trying to re-create index from scratch. But I get this exception. I also close the IndexSearcher before doing this. java.io.IOException: Cannot delete deletable at org.apache.lucene.store.FSDirectory.create(FSDirectory.java:195) at org.apache.lucene.store.FSDirec

Re: BooleanQuery question

2006-07-22 Thread Chris Hostetter
: >you can't have a boolean query containing only MUST_NOT clauses (which is : >what (-(FILE:abstract.htm)) is. it matches no documents, so the mandatory : >qualification on it causes the query to fail for all docs. : : This is true for the search queries, but it makes sense in a query : filter I