On 5/4/07, escher2k <[EMAIL PROTECTED]> wrote:
(2) Is it possible to force Lucene to treat a multiword (e.g. Ruby on Rails)
as one word ? I am not sure
if there is a mechanism to do this by creating a special text file (like the
one that exists for synonyms for
instance) ?
Solr's SynonymFilter
: (1) How does one ensure that Solr treats words like .Net and 3D correctly ?
: Right now, they get
: translated into Net and 3 d respectively.
Solr doesn't do anything special with your input by default -- it only
does what your schema.xml tells it to do .. if you use the example schema,
then som
Hi,
Didn't see anyone answering your questions...
1) You'll have to write your own analyzer and tokenizer that does the right
thing for your input. From what you described so far, maybe you can simply use
the WhitespaceAnalyzer or some such.
2) Again, you'd have to write your own analyzer and