Re: Stats help needed on price field using different currencies

2011-05-28 Thread Erick Erickson
I suspect that any such change wouldn't be very performant since you'd somehow have to understand what the currency was for each doc, which you'd get from the doc somehow... What I'd do is add something like "normalized_price" at index time that converted all prices into the currency of your choic

Re: query parser and other query filters

2011-05-28 Thread Erick Erickson
I don't quite understand what the problem is. If you're using the same (or nearly the same) analysis chain for both query and index, you should be getting the same treatment of punctuation. Try looking at the analysis page from Solr admin and you'll see what I'm talking about here. Many of the tok

Re: How to ignore whitespace/ case sensitivity with dedupe

2011-05-28 Thread tinman
By default, stored = true, indexed = true. Any case, this is an example output from solr search console. 1234 JOHN SMITH 5430fbe9e6374611 1233 john SMITh 49867a7835ff6741 As you can see, the 2 signature fields are different. And I want the overrides = false a

Re: How to ignore whitespace/ case sensitivity with dedupe

2011-05-28 Thread Koji Sekiguchi
(11/05/29 8:47), tinman wrote: Hi all, I've followed the instructions at this link http://wiki.apache.org/solr/Deduplication and got the basic dedupe field working. However, it doesn't seem to recognize case differences or white space differences even thought I've defined the type of the fields

How to ignore whitespace/ case sensitivity with dedupe

2011-05-28 Thread tinman
Hi all, I've followed the instructions at this link http://wiki.apache.org/solr/Deduplication and got the basic dedupe field working. However, it doesn't seem to recognize case differences or white space differences even thought I've defined the type of the fields to be used for dedupe as well as

RE: K-Stemmer for Solr 3.1

2011-05-28 Thread Steven A Rowe
Hi Mark, Yonik Seeley indicated on LUCENE-152 that he is considering contributing Lucid's KStemmer version to Lucene: You can vote

Re: parentDeltaQuery

2011-05-28 Thread Jeffrey Chang
I'm also working on Delta queries; here's what I found. Hopefully it's useful for you too: http://wiki.apache.org/solr/DataImportHandler#Using_delta-import_command On Tue, May 24, 2011 at 6:42 PM, Romi wrote: > Hi, i am new to solr and i m trying some examples to fetch data from MySql > to > so

Re: highlighting in multiValued field

2011-05-28 Thread Jeffrey Chang
Hi All, I'll share my own workaround for my own issue. I simply created a new multiValued field that concatenantes the multiValued fields for index. During search, I will then have both fields in the same array position. Thanks, Jeff On Fri, May 27, 2011 at 10:24 PM, Jeffrey Chang wrote: > Hi