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)
commit1a4d6b95fab9bceec919854df8efe8363df55997
tree65f28dbe1e642a26f87d150271c13162d34bb101
parentfd0e844569539b1c365114ff1b82209832f14bf7
Added support for scan of SOLR indexes. To enable support, add the following request handler to your solrconfig.xml file.

<!-- 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>
client/client.c
src/solr.c
src/zoom-sru.c