Uses of Interface
org.apache.ignite.internal.cache.query.index.Index
-
-
Uses of Index in org.apache.ignite.internal.cache.query.index
Classes in org.apache.ignite.internal.cache.query.index that implement Index Modifier and Type Class Description classAbstractIndexAbstract class for all Index implementations.Methods in org.apache.ignite.internal.cache.query.index with type parameters of type Index Modifier and Type Method Description <T extends Index>
TAbstractIndex. unwrap(Class<T> clazz)Provides a standard way to access the underlying concrete index implementation to provide access to further, proprietary features.<T extends Index>
TIndex. unwrap(Class<T> clazz)Provides a standard way to access the underlying concrete index implementation to provide access to further, proprietary features.Methods in org.apache.ignite.internal.cache.query.index that return Index Modifier and Type Method Description IndexIndexFactory. createIndex(@Nullable GridCacheContext<?,?> cctx, IndexDefinition definition)Creates index by specified definition for specified cache.IndexIndexProcessor. createIndex(GridCacheContext<?,?> cctx, IndexFactory factory, IndexDefinition definition)Creates a new index.IndexIndexProcessor. createIndexDynamically(GridCacheContext cctx, IndexFactory factory, IndexDefinition definition, SchemaIndexCacheVisitor cacheVisitor)Creates a new index.@Nullable IndexIndexProcessor. index(IndexName idxName)Returns index for specified name.Methods in org.apache.ignite.internal.cache.query.index that return types with arguments of type Index Modifier and Type Method Description Collection<Index>IndexProcessor. indexes(String cacheName)Returns collection of indexes for specified cache.Method parameters in org.apache.ignite.internal.cache.query.index with type arguments of type Index Modifier and Type Method Description voidIndexProcessor. store(Collection<? extends Index> idxs, CacheDataRow newRow, @Nullable CacheDataRow prevRow, boolean prevRowAvailable)Updates index with new row. -
Uses of Index in org.apache.ignite.internal.cache.query.index.sorted
Subinterfaces of Index in org.apache.ignite.internal.cache.query.index.sorted Modifier and Type Interface Description interfaceSortedSegmentedIndexInterface for sorted and segmented Ignite indexes. -
Uses of Index in org.apache.ignite.internal.cache.query.index.sorted.client
Classes in org.apache.ignite.internal.cache.query.index.sorted.client that implement Index Modifier and Type Class Description classAbstractClientIndexBase class for all index implementations for Ignite client nodes.classClientIndexWe need indexes on non-affinity nodes.Methods in org.apache.ignite.internal.cache.query.index.sorted.client that return Index Modifier and Type Method Description IndexClientIndexFactory. createIndex(GridCacheContext<?,?> cctx, IndexDefinition def)Creates index by specified definition for specified cache. -
Uses of Index in org.apache.ignite.internal.cache.query.index.sorted.inline
Subinterfaces of Index in org.apache.ignite.internal.cache.query.index.sorted.inline Modifier and Type Interface Description interfaceInlineIndexRepresents an index that inlines some of index keys.Classes in org.apache.ignite.internal.cache.query.index.sorted.inline that implement Index Modifier and Type Class Description classInlineIndexImplSorted index implementation.Methods in org.apache.ignite.internal.cache.query.index.sorted.inline that return Index Modifier and Type Method Description IndexInlineIndexFactory. createIndex(GridCacheContext<?,?> cctx, IndexDefinition def)Creates index by specified definition for specified cache. -
Uses of Index in org.apache.ignite.internal.processors.query.schema.management
Methods in org.apache.ignite.internal.processors.query.schema.management that return Index Modifier and Type Method Description IndexIndexDescriptor. index()Index handler.Constructors in org.apache.ignite.internal.processors.query.schema.management with parameters of type Index Constructor Description IndexDescriptor(TableDescriptor tbl, String name, QueryIndexType type, LinkedHashMap<String,IndexKeyDefinition> keyDefs, boolean isPk, boolean isAff, int inlineSize, Index idx)
-