From ffbdc0a4c36d4855a0cae70afef5e3aa96994b79 Mon Sep 17 00:00:00 2001 From: Martijn van Groningen Date: Wed, 27 Feb 2013 10:46:55 +0100 Subject: [PATCH] Updated postings format jdocs --- .../postingsformat/DefaultPostingsFormatProvider.java | 9 ++------- .../postingsformat/PulsingPostingsFormatProvider.java | 4 ++-- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/elasticsearch/index/codec/postingsformat/DefaultPostingsFormatProvider.java b/src/main/java/org/elasticsearch/index/codec/postingsformat/DefaultPostingsFormatProvider.java index b69356eaabe..1cae8363a89 100644 --- a/src/main/java/org/elasticsearch/index/codec/postingsformat/DefaultPostingsFormatProvider.java +++ b/src/main/java/org/elasticsearch/index/codec/postingsformat/DefaultPostingsFormatProvider.java @@ -27,21 +27,16 @@ import org.elasticsearch.common.inject.assistedinject.Assisted; import org.elasticsearch.common.settings.Settings; /** - * The default postingsformat, maps to {@link Lucene40PostingsFormat}. + * The default postingsformat, maps to {@link Lucene41PostingsFormat}. * */ -// LUCENE UPGRADE: Upgrade Lucene40PostingsFormat to next version +// LUCENE UPGRADE: Check if type of field postingsFormat needs to be updated! public class DefaultPostingsFormatProvider extends AbstractPostingsFormatProvider { private final int minBlockSize; diff --git a/src/main/java/org/elasticsearch/index/codec/postingsformat/PulsingPostingsFormatProvider.java b/src/main/java/org/elasticsearch/index/codec/postingsformat/PulsingPostingsFormatProvider.java index ac6bd060596..9a83cbea3c1 100644 --- a/src/main/java/org/elasticsearch/index/codec/postingsformat/PulsingPostingsFormatProvider.java +++ b/src/main/java/org/elasticsearch/index/codec/postingsformat/PulsingPostingsFormatProvider.java @@ -27,7 +27,7 @@ import org.elasticsearch.common.inject.assistedinject.Assisted; import org.elasticsearch.common.settings.Settings; /** - * A {@link PostingsFormatProvider} for Lucenes {@link Pulsing40PostingsFormat}. + * A {@link PostingsFormatProvider} for Lucenes {@link Pulsing41PostingsFormat}. * The pulsing implementation in-lines the posting lists for very low frequent * terms in the term dictionary. This is useful to improve lookup performance * for low-frequent terms. This postings format offers the following parameters: @@ -44,7 +44,7 @@ import org.elasticsearch.common.settings.Settings; * 1 * */ -// LUCENE UPGRADE: Upgrade Pulsing40PostingsFormat to next version +// LUCENE UPGRADE: Check if type of field postingsFormat needs to be updated! public class PulsingPostingsFormatProvider extends AbstractPostingsFormatProvider { private final int freqCutOff;