在我的代码中,我想根据给定密钥存在的文档执行或不执行某些操作。但无法避免检索所有文档内容的额外网络开销。
现在我正在使用
cas, err := bucket.Get(key, &value)
并寻找err == gocb.ErrKeyNotFound
确定文件遗漏的情况。
有没有更有效的方法?
您可以使用子文档 API并检查字段是否存在。
rv = bucket.lookup_in('customer123', SD.exists('purchases.pending[-1]'))
rv.exists(0) # (check if path for first command exists): =>; False
编辑:添加 go 示例
您可以使用子文档 API 来检查文档是否存在,如下所示:
frag, err := bucket.LookupIn("document-key").
Exists("any-path").Execute()
if err != nil && err == gocb.ErrKeyNotFound {
fmt.Printf("Key does not exist\n")
} else {
if frag.Exists("any-path") {
fmt.Printf("Path exists\n")
} else {
fmt.Printf("Path does not exist\n")
}
}