Added support for scan of SOLR indexes. To enable support, add the following request...
authorSimon Jacob <sjacob@nla.gov.au>
Fri, 2 Nov 2012 03:59:31 +0000 (14:59 +1100)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 11 Feb 2013 11:33:03 +0000 (12:33 +0100)
<!-- Terms Component http://wiki.apache.org/solr/TermsComponent A
component to return terms and document frequency of those terms
  -->
<searchComponent name="terms" class="solr.TermsComponent" />

<!-- A request handler for demonstrating the terms component -->
<requestHandler name="/terms" class="solr.SearchHandler"
startup="lazy">
<lst name="defaults">
<bool name="terms">true</bool>
</lst>
<arr name="components">
<str>terms</str>
</arr>
</requestHandler>


No differences found