Revert "Pre-commit fixes for LUCENE-8374 (JavaDoc + arguments)".

LUCENE-8374 was committed without consensus and is expected to be superseded by LUCENE-8585.

This reverts commit 6c11161111.
This commit is contained in:
Toke Eskildsen 2018-12-11 14:13:17 +01:00
parent 05d728f57a
commit 870bb11cc8
3 changed files with 3 additions and 33 deletions

View File

@ -118,9 +118,7 @@ public class IndexedDISICache implements Accountable {
this.name = "";
}
/**
* Shared between all structures that are too small to meaningfully use jump-tables.
*/
// Used to represent no caching.
public static final IndexedDISICache EMPTY = new IndexedDISICache();
/**
@ -158,10 +156,6 @@ public class IndexedDISICache implements Accountable {
return target >> RANK_BLOCK_BITS << RANK_BLOCK_BITS;
}
/**
* Offsets stated the block starts.
* @return true if the cache has offsets.
*/
public boolean hasOffsets() {
return blockCache != null;
}
@ -305,7 +299,6 @@ public class IndexedDISICache implements Accountable {
}
/**
* Creation stats intended for human inspection.
* @return Human readable details from the creation of the cache instance.
*/
public String getCreationStats() {
@ -313,7 +306,6 @@ public class IndexedDISICache implements Accountable {
}
/**
* Cache name, as stated in the constructor.
* @return Human-readable name for the cache instance.
*/
public String getName() {

View File

@ -47,12 +47,6 @@ public class IndexedDISICacheFactory implements Accountable {
// jump-table for numerics with variable bits per value (dates, longs...)
private final Map<String, VaryingBPVJumpTable> vBPVPool = new HashMap<>();
/**
* Creates a {@link IndexedDISICache} and {@link VaryingBPVJumpTable} holding factory,
* intended for shared use within a single segment.
*/
public IndexedDISICacheFactory() { }
/**
* Create a cached {@link IndexedDISI} instance.
* @param data persistent data containing the DISI-structure.
@ -152,24 +146,13 @@ public class IndexedDISICacheFactory implements Accountable {
return cache;
}
/**
* Cache statistics intended for external inspection.
* @return the number of total blocks where jumps are accelerated by jump-tables.
*/
// Statistics
public long getDISIBlocksWithOffsetsCount() {
return disiPool.values().stream().filter(IndexedDISICache::hasOffsets).count();
}
/**
* Cache statistics intended for external inspection.
* @return the total number of DENSE blocks where index-counts are accelerated by rank.
*/
public long getDISIBlocksWithRankCount() {
return disiPool.values().stream().filter(IndexedDISICache::hasRank).count();
}
/**
* Cache statistics intended for external inspection.
* @return the number of numeric blocks where jumps are accelerated by jump-tables
*/
public long getVaryingBPVCount() {
return vBPVPool.size();
}

View File

@ -47,11 +47,6 @@ public class LongCompressor {
*/
private static final double DEFAULT_MIN_ZERO_VALUES_FRACTION_FOR_SPARSE = 0.2; // 20% (just guessing of a value here)
/**
* LongCompressor exclusively uses static methods and is never instantiated.
*/
private LongCompressor() { }
/**
* Create a compact version of the given values.
* @param values PackedInts with no special constraints.
@ -68,7 +63,7 @@ public class LongCompressor {
* @return a compact version of the given values or the given values if compression did not improve on heap overhead.
*/
public static PackedInts.Reader compress(PackedInts.Reader values, int length) {
return compress(values, length, true);
return compress(values, values.size(), true);
}
/**