Package org.elasticsearch.index.codec.postingsformat

Examples of org.elasticsearch.index.codec.postingsformat.Elasticsearch090PostingsFormat


    private final class TestCodec extends Lucene50Codec {

        @Override
        public PostingsFormat getPostingsFormatForField(String field) {
            return new Elasticsearch090PostingsFormat();
        }
View Full Code Here


@LuceneTestCase.SuppressSysoutChecks(bugUrl = "we log a lot on purpose")
public class ElasticsearchPostingsFormatTest extends BasePostingsFormatTestCase {

    @Override
    protected Codec getCodec() {
        return TestUtil.alwaysPostingsFormat(new Elasticsearch090PostingsFormat());
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.codec.postingsformat.Elasticsearch090PostingsFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.