how to pronounce solr

2009-05-08 Thread Charles Federspiel
Hi,
My company is evaluating different open-source indexing and search software
and we are seriously considering Solr.
One of my collegues pronounces it differently than I do and I have no basis
of correcting him.
Is Solr pronounced "SOLerrr"(emphasis on first syllable), or pirate-like,
"SolAhhRrr" (emphasis on the R).

This coworker has just come from a big meeting with various managers where
the technology came up and I'm afraid my battle over this very important
matter may already have been lost.
thank you,
Charles


Re: offline solr indexing

2009-05-02 Thread Charles Federspiel
Thanks. I imagine replication to a slave would require a filesystem writable
by that slave.

I think it helps to realize that indexing is really a function of Content
Management.  After some discussion with coworkers, I've learned that our
internal CMS server runs within tomcat and shares a filesystem with our
public app-servers.  So I'm hoping to deploy solr both to the tomcat
instance (for indexing) and our other instances (for searching) simply
sharing a Solr home between them.  How bad is this? Does updating and
commiting the index interrupt search?  It would only affect our internal
instance, but I still need to know all the effects of this setup.

On Mon, Apr 27, 2009 at 6:32 PM, Shalin Shekhar Mangar <
shalinman...@gmail.com> wrote:

> 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.
>


offline solr indexing

2009-04-27 Thread Charles Federspiel
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 Solr implementation is bound to http requests, can Solr perform
searches against an index that I create with Lucene?
thank you,
Charles Federspiel