What would be a good place to read the custom solr params I passed from the
client to solr ? I saw that all the params passed to solr is available in
rb.req.
I have a business requirement to collapse or combine some properties
together based on some conditions. Currently I have a custom component
> Thanks for your reply, that was
> helpful. Is there any restriction on how many
> parameters i can pass ?
I think there are some max limits on GET and POST methods. You can use both
using solrJ. POST method enables longer parameters.
http://lucene.apache.org/solr/api/org/apache/solr/client/sol
Thanks for your reply, that was helpful. Is there any restriction on how many
parameters i can pass ?
also can i pass some data (as we pass the document to be indexed, when we
call the update url) along with the parameters which the solr server will
use for search.
--
View this message in conte
> I would like to passĀ a bunch of custom parameters to
> turn on/off or set
> thresholds for various custom implementations we have in our
> solr. What
> would be the best way to pass these custom parameters to
> solr server from
> the client ? The client is a Java based application and
> hence we