Re: defining qf in your own request handler

2009-08-25 Thread Shalin Shekhar Mangar
On Tue, Aug 25, 2009 at 5:26 AM, darniz wrote: > > Continuing on this i am having a use case where i have to strip out single > quote for certain fields for example for testing i added teh following > fieldType in schema.xml file > > > > > > > and then i decla

Re: defining qf in your own request handler

2009-08-24 Thread darniz
Continuing on this i am having a use case where i have to strip out single quote for certain fields for example for testing i added teh following fieldType in schema.xml file and then i declared a field like this. So i am assuming if i index a docum

Re: defining qf in your own request handler

2009-08-24 Thread Shalin Shekhar Mangar
On Mon, Aug 24, 2009 at 11:38 PM, darniz wrote: > > 1) is there a parameter where i can flush out the browser cache. Most of > the > time i see cached content in brower and i have to delete the temp files > folder. > Solr emits headers for playing well with http caches. You can disable emitting

Re: defining qf in your own request handler

2009-08-24 Thread Avlesh Singh
> > is there a parameter where i can flush out the browser cache. Most of the > time i see cached content in brower and i have to delete the temp files > folder. > You can disable cache in your browser. I think there is already a jira issue to send no-cache headers to the client for all admin pages

Re: defining qf in your own request handler

2009-08-24 Thread darniz
Thanks it working now. Moving on the same topic i need two more answers 1) is there a parameter where i can flush out the browser cache. Most of the time i see cached content in brower and i have to delete the temp files folder. 2) the other thing i wanted to know how to do stem search. Does dis

Re: defining qf in your own request handler

2009-08-24 Thread Shalin Shekhar Mangar
On Mon, Aug 24, 2009 at 10:43 PM, darniz wrote: > > Hello > i created a custom request handler and i want it to do a search on features > and make field by default. i added the following decleration in my > solrconfig.xml file > > > > 12 > explicit > * > model d

Re: defining qf in your own request handler

2009-08-24 Thread Erik Hatcher
I think you need a space, not a comma, in the qf parameter. It's designed to allow for boosts, like qf=features^2.0 make^1.0 Erik On Aug 24, 2009, at 1:13 PM, darniz wrote: Hello i created a custom request handler and i want it to do a search on features and make field by defaul