: Can I set the phrase slop value to standard request handler? I want it : to be configurable in solrconfig.xml file.
if you mean when a user enters a query like... +fieldA:"some phrase" +(fieldB:true fieldC:1234) ..you want to be able to control what slop value gets used for "some phrase" then at the moment the only way to configure that is to put it in the query string... +fieldA:"some phrase"~3 +(fieldB:true fieldC:1234) ...it's the kind of thing that could be set as a property on the query parser, but no one has implemented that. (patches welcome!) -Hoss