Re: Issue with PHP urlencode and solr encoding

2014-02-23 Thread manju16832003
Hi Shawn and Rico, Thanks you for your suggestions, those are valuable suggestions :-). If Pharse Query does not work as we expected sometimes, I guess we could use *TermQuery* instead. http://blog.florian-hopf.de/2013/01/make-your-filters-match-faceting-in-solr.html This worked fine *fq={!term

Re: Issue with PHP urlencode and solr encoding

2014-02-23 Thread Rico P
On Mon, Feb 24, 2014 at 11:52 AM, Shawn Heisey wrote: > > > The Solarium library for PHP also says that it does escaping, but I > can't find the manual section that they mention about term escaping. > Here's a section that has an example of phrase escaping (putting the > value in double quotes): >

Re: Issue with PHP urlencode and solr encoding

2014-02-23 Thread Shawn Heisey
On 2/23/2014 8:58 PM, manju16832003 wrote: > I come across the issue with urlencoding between PHP and Solr. > I have a field indexed with value *WBE(Honda Edix)* in Solr. > > From PHP codes, if I urlencode($string) and send to Solr, I do not get the > accurate results. > Here is the part of the so