On 7/18/06, Chris Hostetter <[EMAIL PROTECTED]> wrote:
Adding a "namespace" of query params for dealing with highlighting (or anything else) seems kind of complicated and confusing ... is that level of granularity of control at query time really that usefull conpared to the complexity of understanding it? -- or would it make more sense to confine that level of customizability to the solrconfig init params of the requestHandler (where more complex data structures can already be expressed) ?
That's why good defaults are important. If the defaults are working fine for you, there is no difference between greater customizability and less. The namespace thing is just a convention to aid understanding in general.... what query parameters apply to what. Field properties could be made more than a convention... the f.field.property=val stuff could be parsed out to easier-to-use objects by PluginUtils. But they are optional, and I don't see f.foo.fragsize=0 being more complicated than having to write your own custom query handler ;-) -Yonik