gpt4 book ai didi

go - 如何使用 couchbase gocb 检查错误代码?

转载 作者:IT王子 更新时间:2023-10-29 01:39:33 25 4
gpt4 key购买 nike

处理 gocb 返回的错误时(官方 Couchbase Go 客户端)我想检查特定的状态代码(例如 StatusKeyNotFoundStatusKeyExists)。

像这样

_, err := bucket.Get(key, entity)
if err != nil {
if err == gocb.ErrKeyNotFound {
...
}
}

这可以做到吗?

最佳答案

Can this be done?

gocbcore 中,error.go 我们有 following definition :

type memdError struct {
code StatusCode
}

// ...

func (e memdError) KeyNotFound() bool {
return e.code == StatusKeyNotFound
}
func (e memdError) KeyExists() bool {
return e.code == StatusKeyExists
}
func (e memdError) Temporary() bool {
return e.code == StatusOutOfMemory || e.code == StatusTmpFail
}
func (e memdError) AuthError() bool {
return e.code == StatusAuthError
}
func (e memdError) ValueTooBig() bool {
return e.code == StatusTooBig
}
func (e memdError) NotStored() bool {
return e.code == StatusNotStored
}
func (e memdError) BadDelta() bool {
return e.code == StatusBadDelta
}

请注意,memdError 未导出,因此您不能在类型断言中使用它。

因此,采取不同的方法:定义您自己的接口(interface):

type MyErrorInterface interface {
KeyNotFound() bool
KeyExists() bool
}

并断言从 gocb 返回到您的界面的任何错误:

_, err := bucket.Get(key, entity)

if err != nil {
if se, ok = err.(MyErrorInterface); ok {
if se.KeyNotFound() {
// handle KeyNotFound
}
if se.KeyExists() {
// handle KeyExists
}
} else {
// no information about states
}
}

关于go - 如何使用 couchbase gocb 检查错误代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30931951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com