Re: alphanumeric interval

2012-07-05 Thread Cat Bieber
I did not use facets in my implementation, so I don't have any facet-specific code snippet that would be helpful to you. However, if your handler extends SearchHandler and calls super.handleRequestBody() it should be running the facet component code. You have access to the SolrQueryResponse bui

Re: alphanumeric interval

2012-07-05 Thread AlexR
Hi, thanks a lot for your answer, and sorry for my late response. It's my first time to write a solr plugin. I already have a plugin with empty handleRequestBody() method and i'm able to call them. I need the list of facetted field person (facet.field=person) in my method. but i don't know how.

Re: alphanumeric interval

2012-06-22 Thread Cat Bieber
I had a similar issue. The solution I ended up using was a custom RequestHandler that extends SearchHandler. In handleRequestBody() it calls super.handleRequestBody(req, rsp), looks for a "pageSize" parameter (25 in your example), and loops over the array of results inside the response, pulling