当前位置: 首页>>代码示例>>Java>>正文


Java LongPoint.decodeDimension方法代码示例

本文整理汇总了Java中org.apache.lucene.document.LongPoint.decodeDimension方法的典型用法代码示例。如果您正苦于以下问题:Java LongPoint.decodeDimension方法的具体用法?Java LongPoint.decodeDimension怎么用?Java LongPoint.decodeDimension使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.lucene.document.LongPoint的用法示例。


在下文中一共展示了LongPoint.decodeDimension方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: stats

import org.apache.lucene.document.LongPoint; //导入方法依赖的package包/类
@Override
FieldStats.Long stats(IndexReader reader, String fieldName,
                      boolean isSearchable, boolean isAggregatable) throws IOException {
    FieldInfo fi = org.apache.lucene.index.MultiFields.getMergedFieldInfos(reader).fieldInfo(fieldName);
    if (fi == null) {
        return null;
    }
    long size = PointValues.size(reader, fieldName);
    if (size == 0) {
        return new FieldStats.Long(reader.maxDoc(), 0, -1, -1, isSearchable, isAggregatable);
    }
    int docCount = PointValues.getDocCount(reader, fieldName);
    byte[] min = PointValues.getMinPackedValue(reader, fieldName);
    byte[] max = PointValues.getMaxPackedValue(reader, fieldName);
    return new FieldStats.Long(reader.maxDoc(),docCount, -1L, size,
        isSearchable, isAggregatable,
        LongPoint.decodeDimension(min, 0), LongPoint.decodeDimension(max, 0));
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:19,代码来源:NumberFieldMapper.java

示例2: stats

import org.apache.lucene.document.LongPoint; //导入方法依赖的package包/类
@Override
public FieldStats.Date stats(IndexReader reader) throws IOException {
    String field = name();
    FieldInfo fi = org.apache.lucene.index.MultiFields.getMergedFieldInfos(reader).fieldInfo(name());
    if (fi == null) {
        return null;
    }
    long size = PointValues.size(reader, field);
    if (size == 0) {
        return new FieldStats.Date(reader.maxDoc(), 0, -1, -1, isSearchable(), isAggregatable());
    }
    int docCount = PointValues.getDocCount(reader, field);
    byte[] min = PointValues.getMinPackedValue(reader, field);
    byte[] max = PointValues.getMaxPackedValue(reader, field);
    return new FieldStats.Date(reader.maxDoc(),docCount, -1L, size,
        isSearchable(), isAggregatable(),
        dateTimeFormatter(), LongPoint.decodeDimension(min, 0), LongPoint.decodeDimension(max, 0));
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:19,代码来源:DateFieldMapper.java

示例3: stats

import org.apache.lucene.document.LongPoint; //导入方法依赖的package包/类
@Override
public FieldStats stats(IndexReader reader) throws IOException {
    String fieldName = name();
    long size = PointValues.size(reader, fieldName);
    if (size == 0) {
        return null;
    }
    int docCount = PointValues.getDocCount(reader, fieldName);
    byte[] min = PointValues.getMinPackedValue(reader, fieldName);
    byte[] max = PointValues.getMaxPackedValue(reader, fieldName);
    return new FieldStats.Long(reader.maxDoc(),docCount, -1L, size, true, false,
            LongPoint.decodeDimension(min, 0), LongPoint.decodeDimension(max, 0));
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:14,代码来源:SeqNoFieldMapper.java

示例4: isFieldWithinQuery

import org.apache.lucene.document.LongPoint; //导入方法依赖的package包/类
@Override
public Relation isFieldWithinQuery(IndexReader reader,
        Object from, Object to, boolean includeLower, boolean includeUpper,
        DateTimeZone timeZone, DateMathParser dateParser, QueryRewriteContext context) throws IOException {
    if (dateParser == null) {
        dateParser = this.dateMathParser;
    }

    long fromInclusive = Long.MIN_VALUE;
    if (from != null) {
        fromInclusive = parseToMilliseconds(from, !includeLower, timeZone, dateParser, context);
        if (includeLower == false) {
            if (fromInclusive == Long.MAX_VALUE) {
                return Relation.DISJOINT;
            }
            ++fromInclusive;
        }
    }

    long toInclusive = Long.MAX_VALUE;
    if (to != null) {
        toInclusive = parseToMilliseconds(to, includeUpper, timeZone, dateParser, context);
        if (includeUpper == false) {
            if (toInclusive == Long.MIN_VALUE) {
                return Relation.DISJOINT;
            }
            --toInclusive;
        }
    }

    // This check needs to be done after fromInclusive and toInclusive
    // are resolved so we can throw an exception if they are invalid
    // even if there are no points in the shard
    if (PointValues.size(reader, name()) == 0) {
        // no points, so nothing matches
        return Relation.DISJOINT;
    }

    long minValue = LongPoint.decodeDimension(PointValues.getMinPackedValue(reader, name()), 0);
    long maxValue = LongPoint.decodeDimension(PointValues.getMaxPackedValue(reader, name()), 0);

    if (minValue >= fromInclusive && maxValue <= toInclusive) {
        return Relation.WITHIN;
    } else if (maxValue < fromInclusive || minValue > toInclusive) {
        return Relation.DISJOINT;
    } else {
        return Relation.INTERSECTS;
    }
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:50,代码来源:DateFieldMapper.java


注:本文中的org.apache.lucene.document.LongPoint.decodeDimension方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。