Indexing
In SQLite, an Index
is a pointer to specific columns in a table that enable super-fast retrieval.
Note: The database size can increase significantly, however if performance is more important, the tradeoff can be worth it.
Indexes are defined using the indexGroups()
property of the @Table
annotation. These operate similar to how UniqueGroup
work:
specify an
@IndexGroup
, giving it a number andname
. Thename
is used in the database directly to create an index.Add the
@Index
annotation to a@Column
and assign theindexGroups
to thenumber
you specified in the annotation.Build and an
IndexProperty
gets generated. This allows super-easy access to the index so you can enable/disable it with ease.
Note: Index
are not explicitly enabled unless coupled with an IndexMigration
. (read here).
You can define as many @IndexGroup
you want within a @Table
as long as one field references the group. Also individual @Column
can belong to any number of groups:
By defining the index this way, we generate an IndexProperty
, which makes it very easy to enable, disable, and use it within queries:
SQLite Index Wrapper
For flexibility, we also support the SQLite Index
wrapper object, in which the IndexProperty
uses underneath.
Last updated