Re: 答复: 答复: Lucene in large database contexts

2009-03-05 Thread Patrick Turcotte
rch the old information if IndexWriter was not closed(I think lucene release the Lock here),so I only add a few documents every time from buffer to implement index "real time". kai 发件人: antonellop...@gmail.com [mailto:antonellop...@gmail.co m] 代表 Antonello Provenzano 发送时间: 200

Re: 答复: 答复: Lucene in large database contexts

2007-08-11 Thread Mathieu Lecarme
o implement index "real time". kai 发件人: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 代表 Antonello Provenzano 发送时间: 2007年8月10日 星期五 17:59 收件人: java-user@lucene.apache.org 主题: Re: 答复: Lucene in large database contexts Kai, Thanks. The problem I see it's that although I can add a

Re: Lucene in large database contexts

2007-08-11 Thread Antonello Provenzano
Chris, Your solution is very interesting and I would like to consider it. At the moment I'm going to focus on (N)Hibernate Search (in the .NET version is released in the SVN), which also covers the requirement of persistence. If the result of the tests won't be successful, I will immediately focu

Re: Lucene in large database contexts

2007-08-10 Thread Chris Lu
Hi, Antonello, I think you should try DBSight. Although it's a Java implementation, you don't need to worry about java coding at all. Just point the connection string to a database, and specify by you SQL, then you will have scheduling, incremental indexing, recreating indexes, sync with deleted r

Re: Lucene in large database contexts

2007-08-10 Thread Steven Rowe
Hi Antonello, Antonello Provenzano wrote: > I've been working for a while on the implementation of a website > oriented to contents that would contain millions of entries, most of > them indexable (such as descriptions, texts, names, etc.). > The ideal solution to make them searchable would be to

Re: 答复: 答复: Lucene in large database contexts

2007-08-10 Thread Askar Zaidi
e: > > > Antonello, > > > You are right,I think lucene indexsearcher will search the old > > information if IndexWriter was not closed(I think lucene release the > Lock > > here),so I only add a few documents every time from buffer to implement > > index

Re: 答复: 答复: Lucene in large database contexts

2007-08-10 Thread Erick Erickson
plement > index "real time". > > > > kai > > > > > > 发件人: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 代表 > Antonello Provenzano > > 发送时间: 2007年8月10日 星期五 17:59 > > 收件人: java-user@lucene.apache.org > > 主题: Re: 答复: Lucene in large database contexts >

Re: 答复: 答复: Lucene in large database contexts

2007-08-10 Thread Antonello Provenzano
ndex > "real time". > > kai > > > 发件人: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 代表 Antonello Provenzano > 发送时间: 2007年8月10日 星期五 17:59 > 收件人: java-user@lucene.apache.org > 主题: Re: 答复: Lucene in large database contexts > > Kai, > > Thanks. The probl

答复: 答复: Lucene in large database contexts

2007-08-10 Thread Kai Hu
lto:[EMAIL PROTECTED] 代表 Antonello Provenzano 发送时间: 2007年8月10日 星期五 17:59 收件人: java-user@lucene.apache.org 主题: Re: 答复: Lucene in large database contexts Kai, Thanks. The problem I see it's that although I can add a Document through IndexWriter or IndexModifier, this won't be searchable until

Re: 答复: Lucene in large database contexts

2007-08-10 Thread Antonello Provenzano
t; kai > > -邮件原件- > 发件人: Antonello Provenzano [mailto:[EMAIL PROTECTED] > 发送时间: 2007年8月10日 星期五 17:09 > 收件人: java-user@lucene.apache.org > 主题: Lucene in large database contexts > > Hi There! > > I've been working for a while on the implementation of a website >

Re: Lucene in large database contexts

2007-08-10 Thread Antonello Provenzano
Lukas, Thanks for the fast and clarifying response. Something I haven't specified is I'm working on Mono, that means I use Lucene.Net version. The reason I'm posting to the Java User list is that this is a more active one and with people who could have had my same requirements. Since Lucene and L

答复: Lucene in large database contexts

2007-08-10 Thread Kai Hu
Hi, Antonello You can use IndexWriter.addDocument(Document document) to add single document,same to update,delete operation. kai -邮件原件- 发件人: Antonello Provenzano [mailto:[EMAIL PROTECTED] 发送时间: 2007年8月10日 星期五 17:09 收件人: java-user@lucene.apache.org 主题: Lucene in large database

Re: Lucene in large database contexts

2007-08-10 Thread Lukas Vlcek
Also you can look at Hibernate Search . BR Lukas On 8/10/07, Lukas Vlcek <[EMAIL PROTECTED]> wrote: > > Hi, > did you have a chance to look at > Compass? > It can do exactly what you want. > Lukas > > On 8/10/07, Antonello Proven

Re: Lucene in large database contexts

2007-08-10 Thread Lukas Vlcek
Hi, did you have a chance to look at Compass? It can do exactly what you want. Lukas On 8/10/07, Antonello Provenzano <[EMAIL PROTECTED]> wrote: > > Hi There! > > I've been working for a while on the implementation of a website > oriented to contents that woul

Lucene in large database contexts

2007-08-10 Thread Antonello Provenzano
Hi There! I've been working for a while on the implementation of a website oriented to contents that would contain millions of entries, most of them indexable (such as descriptions, texts, names, etc.). The ideal solution to make them searchable would be to use Lucene as index and search engine.