Class DictionaryInternerHolder
- java.lang.Object
-
- org.apache.pinot.segment.local.segment.index.dictionary.DictionaryInternerHolder
-
public class DictionaryInternerHolder extends Object
This class holds the dictionary interners. It is currently used only for OnHeapStringDictionary.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcreateIdentifier(String tableName, String colName)FALFInterner<byte[]>getByteInterner(String columnIdentifier, int capacity)static DictionaryInternerHoldergetInstance()FALFInterner<String>getStrInterner(String columnIdentifier, int capacity)
-
-
-
Method Detail
-
getInstance
public static DictionaryInternerHolder getInstance()
-
getStrInterner
public FALFInterner<String> getStrInterner(String columnIdentifier, int capacity)
-
getByteInterner
public FALFInterner<byte[]> getByteInterner(String columnIdentifier, int capacity)
-
-