Re: Solr range query issue

2014-08-27 Thread Jack Krupansky
or "text" field (which)? If a text field, does it have a lower case filter, in which case you don't need lower case. Worst case, you could use a regex query term, but better to avoid that if at all possible. -- Jack Krupansky -Original Message----- From: nutchsolruser Sen

Re: Solr range query issue

2014-08-26 Thread nutchsolruser
Sorry, before asking the question I should have done sufficient searching on internet, I found my answer here. http://stackoverflow.com/questions/8883419/solr-alphabetical-range-query Thank You, -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-range-query-issue

Solr range query issue

2014-08-26 Thread nutchsolruser
ame:[a TO z]", "parsedquery_toString": "-name:[a TO z] -name:[a TO z]", "QParser": "LuceneQParser", -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-range-query-issue-tp4155327.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Range Query Anomalities

2009-08-20 Thread Chris Hostetter
: Subject: Solr Range Query Anomalities : In-Reply-To: <42aac72d6e244561cb364739bf3c7517.squir...@webmail01.one.com> : References: <42aac72d6e244561cb364739bf3c7517.squir...@webmail01.one.com> http://people.apache.org/~hossman/#threadhijack Thread Hijacking on Mailing Lists When st

Re: Solr Range Query Anomalities [Solved]

2009-08-20 Thread johan . sjoberg
SortableDoubleField works excellent, haven't tried TrieField though. Thanks for the super fast support everyone. Regards, Johan > On Thursday 20 August 2009 16:07, johan.sjob...@findwise.se wrote: >> we're performing range queries of a field which is of type double. Some >> queries which should

Re: Solr Range Query Anomalities

2009-08-20 Thread Øystein F. Steimler
On Thursday 20 August 2009 16:07, johan.sjob...@findwise.se wrote: > we're performing range queries of a field which is of type double. Some > queries which should generate results does not, and I think it's best > explained by the following examples; it's also expected to exist data in > all range

Re: Solr Range Query Anomalities

2009-08-20 Thread Andrew Clegg
Try a sdouble or sfloat field type? Andrew. johan.sjoberg wrote: > > Hi, > > we're performing range queries of a field which is of type double. Some > queries which should generate results does not, and I think it's best > explained by the following examples; it's also expected to exist data

Re: Solr Range Query Anomalities

2009-08-20 Thread Shalin Shekhar Mangar
On Thu, Aug 20, 2009 at 7:37 PM, wrote: > Hi, > > we're performing range queries of a field which is of type double. Some > queries which should generate results does not, and I think it's best > explained by the following examples; it's also expected to exist data in > all ranges: > > > ?q=field

Solr Range Query Anomalities

2009-08-20 Thread johan . sjoberg
Hi, we're performing range queries of a field which is of type double. Some queries which should generate results does not, and I think it's best explained by the following examples; it's also expected to exist data in all ranges: ?q=field:[10.0 TO 20.0] // OK ?q=field:[9.0 TO 20.0] // NOT OK ?q

Re: solr range query

2007-11-12 Thread Yonik Seeley
On Nov 12, 2007 8:02 AM, Heba Farouk <[EMAIL PROTECTED]> wrote: > I would like to use solr to return ranges of searches on an integer > field, if I wrote in the url offset:[0 TO 10], it returns documents > with offset values 0, 1, 10 only but I want to return the range 0,1,2, > 3, 4 ,10. How

solr range query

2007-11-12 Thread Heba Farouk
Hello, I would like to use solr to return ranges of searches on an integer field, if I wrote in the url offset:[0 TO 10], it returns documents with offset values 0, 1, 10 only but I want to return the range 0,1,2, 3, 4 ,10. How can I do that with solr Thanks in advance Best rega