Re: Incremental Indexing in PyLucene

2009-08-22 Thread Simon Willnauer
this is the java users mailing list - you will get help on the user mailinglist of pylucene: http://lucene.apache.org/pylucene/resources/mailing_lists.html simon On Sat, Aug 22, 2009 at 2:56 PM, mayank juneja wrote: > Hi, > > I am building a database of text files using PyLucene. I need to add n

RE: Incremental Indexing in PyLucene

2009-08-22 Thread Uwe Schindler
This mailing list is about Lucene Java! Please ask your question in the PyLucene list. - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -Original Message- > From: mayank juneja [mailto:mayankjune...@gmail.com] > Sent: Saturday, Augu

Re: Incremental Indexing.

2008-09-09 Thread Jason Rutherglen
Hi Jang, Yes, and I have not completed it either... Perhaps when I do you can use it. Best regards, Jason On Tue, Sep 9, 2008 at 9:20 PM, 장용석 <[EMAIL PROTECTED]> wrote: > Thanks for your helps. > I have about 40 documents in my index and it is constant update (price > or name.. etc). > I wil

Re: Incremental Indexing.

2008-09-09 Thread 장용석
Thanks for your helps. I have about 40 documents in my index and it is constant update (price or name.. etc). I will try use function delete and add. And Jason I am interested in it (actually about lucene), but I am worried I do not understand core logic all about lucene and I am not good at e

Re: Incremental Indexing.

2008-09-09 Thread Ian Lea
Such incremental indexing is standard practice and unlikely to cause a problem, particularly if you are only working with a few thousand documents. Instead of delete/add you could use IndexWriter.updateDocument(). -- Ian. 2008/9/9 장용석 <[EMAIL PROTECTED]>: > Hi~. > I hava a question about lucen

Re: Incremental Indexing.

2008-09-08 Thread Jason Rutherglen
Hi Jang, I've been working on Tag Index to address this issue. It seems like a popular feature and I have not had time to fully implement it yet. http://issues.apache.org/jira/browse/LUCENE-1292 To be technical it handles UN_TOKENIZED fields (did this name change now?) and some specialized thing

Re: incremental indexing - efficiency

2005-03-23 Thread Otis Gospodnetic
That sounds a little low. I'll assume that you profiled your whole application, which leaves room for something else slowing things down, and I'll suggest you write a standalone application whose only task is to index documents as quickly as possible. Hm, this reminds me that I've written stuff l