: http://www.lucidimagination.com/blog/2009/03/31/nested-queries-in-solr/). : When working with Solr 1.3 stable, I'm able to use this syntax : effectively using the default requestHandler, but when I am : hand-rolling my own requestHandler, it doesn't recognize the _query_
the magic field _query_ is special syntax of the SolrQueryParser (aka the "lucene" QParserPlugin) (FYI: if you know jaav, which i assume you do it you're writting your own requestHandler) you can find this by grepping the code base for '"_query_"' So if you use SolrQueryParser in your own request handler you should be fine ... if you're writting a custom request handler you'll have to add that same special handling. -Hoss