chore: replace all cn comments to en version by volc api (#313)

This commit is contained in:
tecvan
2025-07-31 15:18:11 +08:00
committed by GitHub
parent 91d6cdb430
commit 5abc63fba6
254 changed files with 5899 additions and 5844 deletions

View File

@@ -64,7 +64,7 @@ const (
type FieldName = string
// 内置 field name
// Built-in field name
const (
FieldID FieldName = "id" // int64
FieldCreatorID FieldName = "creator_id" // int64

View File

@@ -25,15 +25,15 @@ import (
type IndexerOptions struct {
PartitionKey *string
Partition *string // 存储分片映射
Partition *string // Storage sharding map
IndexingFields []string
ProgressBar progressbar.ProgressBar
}
type RetrieverOptions struct {
MultiMatch *MultiMatch // field 查询
MultiMatch *MultiMatch // Multi-field query
PartitionKey *string
Partitions []string // 查询分片映射
Partitions []string // Query sharding map
}
type MultiMatch struct {