Ai
2 Star 0 Fork 0

mirrors_sourcegraph/multicache

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
underlying.go 428 Bytes
Copy Edit Raw Blame History
Quinn Slack authored 2013-10-03 18:32 +08:00 . Fallback
package multicache
// Underlying cache interface.
type Underlying interface {
// Get returns the []byte representation of a cached response and a bool
// set to true if the value isn't empty
Get(key string) (responseBytes []byte, ok bool)
// Set stores the []byte representation of a response against a key
Set(key string, responseBytes []byte)
// Delete removes the value associated with the key
Delete(key string)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_sourcegraph/multicache.git
git@gitee.com:mirrors_sourcegraph/multicache.git
mirrors_sourcegraph
multicache
multicache
master

Search