Uses of Class
org.apache.ignite.cache.QueryIndex
-
Packages that use QueryIndex Package Description org.apache.ignite.cache Contains main Data Grid APIs.org.apache.ignite.internal.management.cache org.apache.ignite.internal.processors.platform.utils org.apache.ignite.internal.processors.query org.apache.ignite.internal.processors.query.schema.operation -
-
Uses of QueryIndex in org.apache.ignite.cache
Methods in org.apache.ignite.cache that return QueryIndex Modifier and Type Method Description QueryIndexQueryIndex. setFieldNames(Collection<String> fields, boolean asc)Sets a collection of field names altogether with the field sorting direction.QueryIndexQueryIndex. setFields(LinkedHashMap<String,Boolean> fields)Sets fields included in the index.QueryIndexQueryIndex. setIndexType(QueryIndexType type)Sets index type.QueryIndexQueryIndex. setInlineSize(int inlineSize)Sets index inline size in bytes.QueryIndexQueryIndex. setName(String name)Sets index name.Methods in org.apache.ignite.cache that return types with arguments of type QueryIndex Modifier and Type Method Description @NotNull Collection<QueryIndex>QueryEntity. getIndexes()Gets a collection of index entities.Method parameters in org.apache.ignite.cache with type arguments of type QueryIndex Modifier and Type Method Description QueryEntityQueryEntity. setIndexes(Collection<QueryIndex> idxs)Sets a collection of index entities. -
Uses of QueryIndex in org.apache.ignite.internal.management.cache
Methods in org.apache.ignite.internal.management.cache with parameters of type QueryIndex Modifier and Type Method Description static List<QueryIndexField>QueryIndexField. list(QueryIndex idx)Constructors in org.apache.ignite.internal.management.cache with parameters of type QueryIndex Constructor Description QueryIndex(QueryIndex idx)Create data transfer object for given cache type metadata. -
Uses of QueryIndex in org.apache.ignite.internal.processors.platform.utils
Methods in org.apache.ignite.internal.processors.platform.utils that return QueryIndex Modifier and Type Method Description static QueryIndexPlatformConfigurationUtils. readQueryIndex(BinaryRawReader in)Reads the query index.Methods in org.apache.ignite.internal.processors.platform.utils with parameters of type QueryIndex Modifier and Type Method Description static voidPlatformConfigurationUtils. writeQueryIndex(BinaryRawWriter writer, QueryIndex idx)Writer query index. -
Uses of QueryIndex in org.apache.ignite.internal.processors.query
Methods in org.apache.ignite.internal.processors.query with parameters of type QueryIndex Modifier and Type Method Description static QueryIndexDescriptorImplQueryUtils. createIndexDescriptor(QueryTypeDescriptorImpl typeDesc, QueryIndex idx)Create index descriptor.IgniteInternalFuture<?>GridQueryProcessor. dynamicIndexCreate(String cacheName, String schemaName, String tblName, QueryIndex idx, boolean ifNotExists, int parallel)Entry point for index procedure.static StringQueryUtils. indexName(String tblName, QueryIndex idx)Get index name.static StringQueryUtils. indexName(QueryEntity entity, QueryIndex idx)Get index name.static voidQueryUtils. processDynamicIndexChange(String idxName, @Nullable QueryIndex idx, QueryTypeDescriptorImpl d)Process dynamic index change. -
Uses of QueryIndex in org.apache.ignite.internal.processors.query.schema.operation
Methods in org.apache.ignite.internal.processors.query.schema.operation that return QueryIndex Modifier and Type Method Description QueryIndexSchemaIndexCreateOperation. index()Constructors in org.apache.ignite.internal.processors.query.schema.operation with parameters of type QueryIndex Constructor Description SchemaIndexCreateOperation(UUID opId, String cacheName, String schemaName, String tblName, QueryIndex idx, boolean ifNotExists, int parallel)Constructor.
-