On Tue, Apr 28, 2009 at 12:38 AM, Charles Federspiel < charles.federsp...@gmail.com> wrote:
> Solr Users, > Our app servers are setup on read-only filesystems. Is there a way > to perform indexing from the command line, then copy the index files to the > app-server and use Solr to perform search from inside the servlet > container? If the filesystem is read-only, then how can you index at all? But what I think you are describing is the regular master-slave setup that we use. A dedicated master on which writes are performed. Multiple slaves on which searches are performed. The index is replicated to slaves through script or the new java based replication. > If the Solr implementation is bound to http requests, can Solr perform > searches against an index that I create with Lucene? > thank you, It can but it is a little tricky to get the schema and analysis correct between your Lucene writer and Solr searcher. -- Regards, Shalin Shekhar Mangar.