RE: remote stored index

2008-02-17 Thread John Griffin
Don't forget old, venerable RMI. We use it for multiple remote indexes and it works well. John G. -Original Message- From: Jan Pieper [mailto:[EMAIL PROTECTED] Sent: Sunday, February 17, 2008 5:20 AM To: Lucene Mailinglist Subject: remote stored index Hi guys, I want to use lucen

Re: remote stored index

2008-02-17 Thread Shalin Shekhar Mangar
I think using Apache Solr could be a good solution. It builds on top of lucene and provides HTTP APIs to query/store data. On Feb 17, 2008 5:50 PM, Jan Pieper <[EMAIL PROTECTED]> wrote: > Hi guys, > > I want to use lucene for my new application and I have to store my > lucene index on another serv

Re: remote stored index

2008-02-17 Thread Erick Erickson
RAMdirectories are transient, they go away when your program ends. They are suitable for small indexes that are created on the fly etc. An index written to disk (i.e. an FSDIr) is just a set of files. You can freely copy them anywhere you want. Assuming you have an index phase where the index is c

remote stored index

2008-02-17 Thread Jan Pieper
Hi guys, I want to use lucene for my new application and I have to store my lucene index on another server than my client is running on. What is the best way to use the index? Only found RAMDirectory and FSDirectory in lucene package. I read something about "download, manipulate and upload i