📄️ 前缀索引和排序键
How prefix indexes work in StarRocks as automatically generated sort-key indexes that accelerate range queries and equality filters.
📄️ Bitmap 索引
How to create and manage bitmap indexes in StarRocks to accelerate equality and range queries on low-cardinality columns.
📄️ Bloom filter 索引
How to create and manage Bloom filter indexes in StarRocks to skip data files unlikely containing query results on high-cardinality columns.
📄️ N-gram bloom filter 索引
How to use N-gram Bloom filter indexes in StarRocks to accelerate LIKE queries and ngram_search functions by tokenizing strings.
📄️ 全文倒排索引
How to create and use full-text inverted indexes in StarRocks to accelerate text keyword searches by indexing individual words.
📄️ 向量索引
How to create and use vector indexes (IVFPQ, HNSW) in StarRocks for approximate nearest neighbor search on high-dimensional vector data.
📄️ 索引
Overview of index types in StarRocks: built-in indexes (Prefix, Ordinal, ZoneMap) and user-created indexes (Bitmap, Bloom filter).