mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-08-08 12:09:53 +08:00
getcache
This commit is contained in:
parent
a6f30db53b
commit
57d623af9a
5
pkg/common/db/cache/rockscache.go
vendored
5
pkg/common/db/cache/rockscache.go
vendored
@ -10,6 +10,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
|
||||||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
|
||||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/utils"
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/utils"
|
||||||
"github.com/dtm-labs/rockscache"
|
"github.com/dtm-labs/rockscache"
|
||||||
)
|
)
|
||||||
@ -107,10 +108,12 @@ func getCache[T any](ctx context.Context, rcClient *rockscache.Client, key strin
|
|||||||
arr = append(arr, "first return")
|
arr = append(arr, "first return")
|
||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
if v == "" {
|
||||||
|
return t, errs.ErrRecordNotFound
|
||||||
|
}
|
||||||
err = json.Unmarshal([]byte(v), &t)
|
err = json.Unmarshal([]byte(v), &t)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
arr = append(arr, "json.Unmarshal error "+err.Error())
|
arr = append(arr, "json.Unmarshal error "+err.Error())
|
||||||
log.ZError(ctx, "cache json.Unmarshal failed", err, "key", key, "value", v, "expire", expire)
|
|
||||||
return t, utils.Wrap(err, "")
|
return t, utils.Wrap(err, "")
|
||||||
}
|
}
|
||||||
arr = append(arr, "success")
|
arr = append(arr, "success")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user