Interface InlineIndex
-
- All Superinterfaces:
Index,SortedSegmentedIndex
- All Known Implementing Classes:
InlineIndexImpl
public interface InlineIndex extends SortedSegmentedIndex
Represents an index that inlines some of index keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancreated()trueif index is created andfalseif it is restored from disk.intinlineSize()InlineIndexTreesegment(int segment)-
Methods inherited from interface org.apache.ignite.internal.cache.query.index.Index
canHandle, destroy, id, name, onUpdate, unwrap
-
Methods inherited from interface org.apache.ignite.internal.cache.query.index.sorted.SortedSegmentedIndex
count, count, find, find, findFirst, findFirstOrLast, findLast, indexDefinition, segmentsCount, totalCount
-
-
-
-
Method Detail
-
inlineSize
int inlineSize()
- Returns:
- amount of bytes to store inlined index keys.
-
created
boolean created()
trueif index is created andfalseif it is restored from disk.
-
segment
InlineIndexTree segment(int segment)
- Parameters:
segment- Number of tree segment.- Returns:
- Tree segment for specified number.
-
-