I really like the flexibility of naming request handlers to append general
constraints / filters.
Has anyone spun thoughts around something like a "solr.ParmSubstHandler" or any
way to pass maybe a special
ps=0:discussions; ps=1:images; ps=2:false
<requestHandler name="partitioned" class="solr.ParmSubstHandler" >
<lst name="defaults">
...
.....
<lst name="appends">
<str name="fq">category:[0]</str>
<str name="fq">category:[1]</str>
<str name="fq">isadmin:[2]</str>
</lst>
...
</requestHandler>
This may be inappropriate for building into SOLR; I'm not sure, but I'm looking
at techniques to round out the appends to be even more flexible.
If there is interest and it makes sense to a wider audience, maybe I should try
my hand at it.
Thanks...Jim Dow.