On 2/6/07, Sergey Polzunov <[EMAIL PROTECTED]> wrote:
Hello all!
I have few questions. I'm digging into Solr server only 3 days and maybe
didn't get something, so I would appreciate for any useful links with info
about Solr configuring
Questions are:
1. What about cache persistent? I've noticed that there are 3 cache types.
If there will be interruption of electricity power after add and before
commit operation?
Caches are in-memory only. If you loose power, you've got worse
problems than losing the cache. :-)
2. How I can create few indexes on one Solr server? I need 2 indexes in
different directories and with different unique Id fields
See the Wiki in the installing section.
You can run more than one Solr webapp in the same servlet container,
or run multiple containers.
3. Is it possible to set LowerCaseFilter (for example) on fields with type
class "solr.StrField"?
Use type "text" with a KeywordTokenizer followed by a LowercaseFilter.
-Yonik