Searched defs:missing (Results 1 - 6 of 6) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/component/
H A DStatsValues.java54 * Updates the statistics when a document is missing a value
56 void missing(); method in interface:StatsValues
59 * Updates the statistics when multiple documents are missing a value
61 * @param count number of times to count a missing value
H A DStatsValuesFactory.java76 protected long missing; field in class:AbstractStatsValues
91 missing += (Long) stv.get("missing");
144 public void missing() { method in class:AbstractStatsValues
145 missing++;
152 missing += count;
171 res.add("missing", missing);
H A DFacetComponent.java421 // if missing from this shard, add the max it could be
432 // add a query for each shard missing the term that needs refinement
542 if (dff.missing) {
690 public boolean missing; field in class:FacetComponent.FieldFacet
712 this.missing = params.getFieldBool(field, FacetParams.FACET_MISSING, false);
734 // the max possible count for a missing term for each shard (indexed by shardNum)
781 // the largest possible missing term is initialMincount if we received less
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/response/
H A DFieldStatsInfo.java40 Long missing; field in class:FieldStatsInfo
64 else if( "missing".equals( entry.getKey() ) ) {
65 missing = (Long)entry.getValue();
113 if( missing != null ) {
114 sb.append( " missing:").append( missing );
147 return missing;
/lucene-3.6.0/solr/core/src/java/org/apache/solr/request/
H A DSimpleFacets.java253 boolean missing = params.getFieldBool(field, FacetParams.FACET_MISSING, false);
281 counts = getFacetTermEnumCounts(searcher, base, field, offset, limit, mincount,missing,sort,prefix);
285 counts = uif.getCounts(searcher, base, offset, limit, mincount,missing,sort,prefix);
289 counts = getFieldCacheCounts(searcher, base, field, offset,limit, mincount, missing, sort, prefix);
367 public static NamedList getFieldCacheCounts(SolrIndexSearcher searcher, DocSet docs, String fieldName, int offset, int limit, int mincount, boolean missing, String sort, String prefix) throws IOException { argument
464 if (missing) {
482 public NamedList getFacetTermEnumCounts(SolrIndexSearcher searcher, DocSet docs, String field, int offset, int limit, int mincount, boolean missing, String sort, String prefix) argument
564 if (missing) {
H A DUnInvertedField.java447 public NamedList getCounts(SolrIndexSearcher searcher, DocSet baseDocs, int offset, int limit, Integer mincount, boolean missing, String sort, String prefix) throws IOException { argument
646 if (missing) {
683 DocSet missing = docs.andNot( searcher.getDocSet(new TermRangeQuery(field, null, null, false, false)) );
806 int c = missing.size();
815 int missingCount = searcher.numDocs(new TermQuery(new Term(f.name, facetType.toInternal(termLabel))), missing);

Completed in 28 milliseconds