Re: Solr Search on Fields name

2014-04-07 Thread anuragwalia
Thanks Ahmat and Jack for replying. I found a another way to solve the problem by using FilterQuery. fq=RuleA:*+OR+RuleC:* but due to development platform query parsing stuck some where else. Hopefully after platform fix it will work for me. I will get back to you if any other issue occurred.

Re: Solr Search on Fields name

2014-04-05 Thread Jack Krupansky
One technique is to add a copyField directive to your schema, which can use a wildcard to copy a bunch of fields to a single, combinaed field that you can query directly, such as rullAll:key. Or, consider using a multivalued field. -- Jack Krupansky -Original Message- From: anuragwal

Re: Solr Search on Fields name

2014-04-04 Thread Ahmet Arslan
HiĀ Anurag, It seems that RuleA and RuleB are field names? in that case try this query q=RuleA:[* TO *] ORĀ RuleB:[* TO *] Ahmet On Friday, April 4, 2014 4:15 PM, anuragwalia wrote: Hi, Thank for giving your important time. Problem : I am unable to find a way how can I search Key with "OR"