: Is it possible to use faceting to not only get the facet count but also the : top-n documents for every facet : directly? If not, how hard would it be to implement this as an extension?
not hard ... a custom request handler could subclass StandardRequestHandler, call super.handleRequest, and then pull the field faceting info out of the response object, and fetch a DocList for each of the top N field constraints. -Hoss