mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
add sparse float vector support to different milvus components, including proxy, data node to receive and write sparse float vectors to binlog, query node to handle search requests, index node to build index for sparse float column, etc. https://github.com/milvus-io/milvus/issues/29419 --------- Signed-off-by: Buqian Zheng <zhengbuqian@gmail.com>
10 lines
206 B
Go
10 lines
206 B
Go
package indexparamcheck
|
|
|
|
type sparseInvertedIndexChecker struct {
|
|
sparseFloatVectorBaseChecker
|
|
}
|
|
|
|
func newSparseInvertedIndexChecker() *sparseInvertedIndexChecker {
|
|
return &sparseInvertedIndexChecker{}
|
|
}
|