mirror of https://github.com/milvus-io/milvus.git
[skip e2e] Add comments for index type (#14805)
Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>pull/14853/head
parent
bb7d0fb2ad
commit
3b2d14a00c
|
@ -14,9 +14,9 @@ package indexparamcheck
|
|||
// IndexType string.
|
||||
type IndexType = string
|
||||
|
||||
// IndexType definitions
|
||||
const (
|
||||
// IndexFaissIDMap represents "FLAT" which means no index is built.
|
||||
IndexFaissIDMap IndexType = "FLAT"
|
||||
IndexFaissIDMap IndexType = "FLAT" // no index is built.
|
||||
IndexFaissIvfFlat IndexType = "IVF_FLAT"
|
||||
IndexFaissIvfPQ IndexType = "IVF_PQ"
|
||||
IndexFaissIvfSQ8 IndexType = "IVF_SQ8"
|
||||
|
|
Loading…
Reference in New Issue