Database indexes are essential for optimizing query performance. This document explains how to add indexes to tables created by Spice for local data acceleration.
Example Spicepod:
Column references can be used to specify which columns to index. The column reference can be a single column name or a multicolumn key. The column reference must be enclosed in parentheses if it is a multicolumn key.
Examples
number: Index the number column(hash, timestamp): Index the hash and timestamp columnsThere are two types of indexes that can be specified in a Spicepod:
enabled: Creates a standard index on the specified column(s).
CREATE INDEX my_index ON my_table (my_column).unique: Creates a unique index on the specified column(s). See Constraints for more information on working with unique constraints on locally accelerated tables.
CREATE UNIQUE INDEX my_index ON my_table (my_column).:::warning[Limitations]
Indexes are not supported for the in-memory Arrow or Cayenne acceleration engines. Use DuckDB, SQLite, or PostgreSQL as the acceleration engine to enable indexing.
:::