List of usage examples for org.apache.solr.search PostFilter interface-usage
From source file alba.solr.core.DynamicQuery.java
public class DynamicQuery extends ExtendedQueryBase implements PostFilter { private CallableFunction function; private ValueSource vs;
From source file com.zvents.solr.components.ScoreStatsPostFilter.java
/**
* PostFilter that does the actual work of computing the basic stats of the documents
* that matched the query and were filtered out by the
* filter queries. This limits the work to only those documents that are actual matches.
*
* @author Amit Nithianandan
From source file org.alfresco.solr.query.PostFilterQuery.java
public class PostFilterQuery extends Query implements PostFilter { private int cost; private final Query query; public PostFilterQuery(int cost, Query query) { this.cost = cost;
From source file org.alfresco.solr.query.SolrAuthoritySetQuery.java
/** * @author Andy * */ public class SolrAuthoritySetQuery extends AbstractAuthoritySetQuery implements PostFilter { public SolrAuthoritySetQuery(String authorities) {
From source file org.alfresco.solr.query.SolrDenySetQuery.java
/** * Query for a set of denied authorities. * * @author Joel Bernstein */ public class SolrDenySetQuery extends AbstractAuthoritySetQuery implements PostFilter {
From source file org.codice.solr.xpath.XpathFilterQuery.java
/** * XPath post filter that creates XPath collector to do final XPath filtering. */ public class XpathFilterQuery extends ExtendedQueryBase implements PostFilter { public static final int POST_FILTER_COST = 100;
From source file org.typo3.solr.search.AccessFilter.java
/**
* A filter to make sure a user can only see documents indexed by TYPO3 he's
* allowed to see.
*
* @author Ingo Renner <ingo@typo3.org>
*/
From source file org.vootoo.search.CollectorFilterQuery.java
/** * use {@link PostFilter} and {@link FilterCollector} filter docId */ public class CollectorFilterQuery extends SolrConstantScoreQuery implements PostFilter { final ValueSourceCollectorFilter valueSourceFilter;