i use solr 1.2 in my project, and i use myself Analizer.
for example:
"oneworld onedream" will be segmented to "one" ,"world", "one" ,
"dream"
this is my analizer result. and i use it in solr.
when i use a query "title:oneworld onedream" in solr , solr will parse it
like this
title:oneword
Grant,
Thanks a lot for the answers. Please see my replies below.
> > 1) Should we do sharding or not?
> > If we start without sharding, how hard will it be to enable it?
> > Is it just some config changes + the index rebuild or is it more?
>
> There will be operations setup, etc. And you'll ha
Hi,
Hm, it looks as if you have not plugged in your custom Analyzer (correctly) in
the solrconfig.xml. Could you paste the relevant part of solrconfig.xml? I
don't recall a bug related to this, but you could also try Solr 1.3 if you
believe you configured things conrrectly.
Otis
--
Sematext
Hi Jacob,
Aha, the first time, I see. Without knowing the background I'd say: "So why
would you expose your Solr instances to search in the first place if the index
is not in place? Just copy the index to Solr slaves manually the first time
and then start the slaves."
On the other hand, I th
Hi Otis,
Yeah, I know it is a bit of an edge case. In my scenario though, the
issue is that I want to start serving some slaves before ALL become
available. I've decided to just do it through jetty wherein, I will
only enable that JNDI config for that host once the snapshot has run.
Best,
Jacob
Hi Andrey,
Responses inlined.
- Original Message
> From: Andrey Shulinskiy <[EMAIL PROTECTED]>
> To: solr-user@lucene.apache.org
> Sent: Sunday, September 21, 2008 11:23:00 PM
> Subject: RE: Hardware config for SOLR
>
> Grant,
>
> Thanks a lot for the answers. Please see my replies b
Hi,
Please use solr-user list instead of solr-dev.
If you want the search to be case SENSITIVE then you do not want to have
LowerCase* in the analyzer chain.
Otis
--
Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch
- Original Message
> From: mahendra mahendra <[EMAIL PROTE
: How would I handle a search for 21" or 3'. The " and ' symbols appear to
: get stripped away by Lucene before passing the query off to the
: analyzers.
...
: We are also using the DisjunctionMaxQueryParser to build the actual
: query from the front end.
Nothing should be striping apo
i use solr1.2
the synonyms and stopwords is at conf directory
when i have more than one webapp , i must configure synonyms and stopwords
each.
i want to define a directory for synonyms and stopwords for all webapp, it
means that all webapp share one synonyms and stopwords .
how to do it?