Re: HELP in QueyParsing !!

2003-07-14 Thread Victor Hadianto
Input: QueryCreated Remarks c\+\+ c (Escape character not working) The StandardTokenizer and QueryParser will drop the ++ sign. This problem is similar to the recent thread. Search the archive the the following strings '-' characer not interpreted correctly in field names

Delete files

2003-07-14 Thread MMachado
Hi, I am new in Lucene. I have a problem with my code. Somebody can help me why I can't delete some files.Maybe I missing something. Thanks in advance. Regards, Michel Here the two code that I use for indexing files and for delete files: the error message is the following:

RE: HELP in QueyParsing !!

2003-07-14 Thread Bharatbhushan_Shetty
Thanks Victor. I'll look into your earlier postings for the solution. But I was wandering, there might be many more scenarios what a user might search for. -Original Message- From: Victor Hadianto [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 2:02 PM To: Lucene Users List

Field.Text(string, string) and Queryparser

2003-07-14 Thread di99mwo
Hello When I use QueryParser.parse(String query,String field,Analyzer analyzer) and have added the field with the type Field.Text(string, string), I can't search in specific field like component:call It can't find the word call in the field component. But if I instead use

Multiuser environments

2003-07-14 Thread Guilherme Barile
Hi I'm writing a web application which will index files using textmining to extract text and lucene to store it. I do have the following implementation questions: 1) Only one user can write to an index at each time. How are you people dealing with this ? Maybe some kind of connection pooling

Multiuser environments

2003-07-14 Thread Guilherme Barile
Hi I'm writing a web application which will index files using textmining to extract text and lucene to store it. I do have the following implementation questions: 1) Only one user can write to an index at each time. How are you people dealing with this ? Maybe some kind of connection pooling

Re: Luke - Lucene Index Browser

2003-07-14 Thread Scott Ganyo
Nifty cool! I'm gonna like this, I can tell already! I'm having a really hard time actually using Luke, though, as all the window panes and table columns are apparently of fixed size. Do you think you could through in the ability to resize the various window panes and table columns? This

Re: Luke - Lucene Index Browser

2003-07-14 Thread Andrzej Bialecki
Scott Ganyo wrote: Nifty cool! I'm gonna like this, I can tell already! I'm having a really hard time actually using Luke, though, as all the window panes and table columns are apparently of fixed size. Do you think you could through in the ability to resize the various window panes and

RE: Files getting deleted when optimize is killed?

2003-07-14 Thread Steve Rajavuori
Upon further examination what I found is this: - Killing the process while optimize() is still working does NOT cause the index files to be deleted, HOWEVER -- - Once the index is opened again by a new process (now apparently in an unstable state due to the incomplete optimize()), at that time

Re: Delete files

2003-07-14 Thread Victor Hadianto
On Mon, 14 Jul 2003 07:11 pm, [EMAIL PROTECTED] wrote: Hi, I am new in Lucene. I have a problem with my code. Somebody can help me why I can't delete some files.Maybe I missing something. Thanks in advance. You have IndexWriter opened while trying to delete document. Use IndexReader to delete

Re: Multiuser environments

2003-07-14 Thread Tatu Saloranta
On Monday 14 July 2003 08:52, Guilherme Barile wrote: Hi I'm writing a web application which will index files using textmining to extract text and lucene to store it. I do have the following implementation questions: 1) Only one user can write to an index at each time. How are you people