Namespace: Lucene.Net.UtilAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public SimpleStringInterner(
int tableSize,
int maxChainLength
) |
Visual Basic |
---|
Public Sub New ( _
tableSize As Integer, _
maxChainLength As Integer _
) |
Visual C++ |
---|
public:
SimpleStringInterner(
int tableSize,
int maxChainLength
) |
Parameters
- tableSize
- Type: System..::..Int32
Size of the hash table, should be a power of two.
- maxChainLength
- Type: System..::..Int32
Maximum length of each bucket, after which the oldest item inserted is dropped.
See Also