I don't believe you can do this OOTB in Lucene currently - searching for this functionality yields this open issue:
https://issues.apache.org/jira/browse/LUCENE-1421
The functionality is present OOTB with Solr however - which provides a faceting feature. A query such as the following:
would return the following result:
<response>
<responseHeader><status>0</status><QTime>2</QTime></responseHeader>
<result numFound="4" start="0"/>
<lst name="facet_counts">
<lst name="facet_queries"/>
<lst name="facet_fields">
<lst name="cat">
<int name="search">0</int>
<int name="memory">0</int>
<int name="graphics">0</int>
<int name="card">0</int>
<int name="music">1</int>
<int name="software">0</int>
<int name="electronics">3</int>
<int name="copier">0</int>
<int name="multifunction">0</int>
<int name="camera">0</int>
<int name="connector">2</int>
<int name="hard">0</int>
<int name="scanner">0</int>
<int name="monitor">0</int>
<int name="drive">0</int>
<int name="printer">0</int>
</lst>
<lst name="inStock">
<int name="false">3</int>
<int name="true">1</int>
</lst>
</lst>
</lst>
</response>
More information on faceting can be found on the Solr website:
http://wiki.apache.org/solr/SimpleFacetParameters
EDIT: If you definitely don't want to go down the SOLR aproach to faceting you may be able to leverage the functionality in this patch described for Lucene:
http://sujitpal.blogspot.com/2007/01/faceted-searching-with-lucene.html
which provides an implementation of the faceting feature on top of Lucene 2.0 via a patch.
