91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

go怎么實現本地緩存

go
小億
111
2023-11-07 13:51:41
欄目: 編程語言

在Go語言中,可以使用`sync.Map`或者`map`來實現本地緩存。
1. 使用`sync.Map`實現本地緩存:

package main
import (
"sync"
"time"
)
type Cache struct {
data sync.Map
}
func (c *Cache) Get(key string) (interface{}, bool) {
value, ok := c.data.Load(key)
if ok {
return value, true
}
return nil, false
}
func (c *Cache) Set(key string, value interface{}) {
c.data.Store(key, value)
}
func (c *Cache) Delete(key string) {
c.data.Delete(key)
}
func main() {
cache := &Cache{}
cache.Set("key1", "value1")
cache.Set("key2", "value2")
value, ok := cache.Get("key1")
if ok {
println(value.(string)) // 輸出:value1
}
cache.Delete("key2")
value, ok = cache.Get("key2")
if !ok {
println("key2 not found") // 輸出:key2 not found
}
}

2. 使用`map`實現本地緩存:

package main
import "time"
type Cache struct {
data   map[string]interface{}
expiry map[string]time.Time
}
func (c *Cache) Get(key string) (interface{}, bool) {
value, ok := c.data[key]
if ok {
expiryTime := c.expiry[key]
if expiryTime.After(time.Now()) {
return value, true
} else {
delete(c.data, key)
delete(c.expiry, key)
return nil, false
}
}
return nil, false
}
func (c *Cache) Set(key string, value interface{}, expiry time.Duration) {
c.data[key] = value
c.expiry[key] = time.Now().Add(expiry)
}
func (c *Cache) Delete(key string) {
delete(c.data, key)
delete(c.expiry, key)
}
func main() {
cache := &Cache{
data:   make(map[string]interface{}),
expiry: make(map[string]time.Time),
}
cache.Set("key1", "value1", time.Second*10)
cache.Set("key2", "value2", time.Second*20)
value, ok := cache.Get("key1")
if ok {
println(value.(string)) // 輸出:value1
}
time.Sleep(time.Second * 15)
value, ok = cache.Get("key1")
if !ok {
println("key1 not found") // 輸出:key1 not found
}
}

以上是兩種常見的在Go語言中實現本地緩存的方法,選擇使用哪種取決于你對并發安全性和性能的需求。

0
高青县| 磐石市| 民丰县| 正宁县| 怀柔区| 榆林市| 周宁县| 简阳市| 五原县| 三亚市| 乐安县| 壤塘县| 新竹县| 修水县| 马山县| 教育| 永清县| 修武县| 类乌齐县| 成安县| 宜兰县| 武穴市| 静安区| 无锡市| 高青县| 龙南县| 卫辉市| 台前县| 滦南县| 镇安县| 桂阳县| 丹江口市| 象山县| 江川县| 乌鲁木齐县| 定安县| 大埔区| 大足县| 陵川县| 漳浦县| 碌曲县|