Getting Started --------------- There are two ways to hook up security to Solr in this package. The first is using a Query Parser plugin. The second is using a Search Component. In both cases, the first step is to have ManifoldCF installed and running. See: http://incubator.apache.org/incubator/connectors/how-to-build-and-deploy.html Then, you will need to add fields to your Solr schema.xml file that can be used to contain document authorization information. There will need to be four of these fields, an 'allow' field for both documents and shares, and a 'deny' field for both documents and shares. For example: Using the Query Parser Plugin ---------------------------- To set up the query parser plugin, modify your solrconfig.xml to add the query parser: http://localhost:8345/mcf-authority-service 50 Hook up the search component in the solrconfig.xml file wherever you want it, e.g.: {!manifoldCFSecurity} ... Using the Search Component ---------------------------- To set up the search component, modify your solrconfig.xml to add the search component: http://localhost:8345/mcf-authority-service 50 Hook up the search component in the solrconfig.xml file wherever you want it, e.g.: manifoldCFSecurity ...