1

在我的代码中,我想根据给定密钥存在的文档执行或不执行某些操作。但无法避免检索所有文档内容的额外网络开销。

现在我正在使用

cas, err := bucket.Get(key, &value)

并寻找err == gocb.ErrKeyNotFound确定文件遗漏的情况。

有没有更有效的方法?

4

1 回答 1

4

您可以使用子文档 API并检查字段是否存在。

使用子文档 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")
    }
}
于 2018-03-15T12:44:07.980 回答