Annotation Type QueryGroupIndex
-
@Retention(RUNTIME) @Target(TYPE) public @interface QueryGroupIndex
Describes group index.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description int
inlineSize
Index inline size in bytes.
-
-
-
Element Detail
-
name
String name
Group index name.- Returns:
- Name.
-
-
-
inlineSize
int inlineSize
Index inline size in bytes. When enabled part of indexed value will be placed directly to index pages, thus minimizing data page accesses, thus increasing query performance.Allowed values:
-1
(default) - determine inline size automatically (see below)0
- index inline is disabled (not recommended)- positive value - fixed index inline
-1
, Ignite will try to detect inline size automatically. It will be no more thanCacheConfiguration.getSqlIndexMaxInlineSize()
. Index inline will be enabled for all fixed-length types, but will not be enabled forString
.- Returns:
- Index inline size in bytes.
- Default:
- -1
-
-