repositorypackage
0.0.0-20240124012432-40ecc9267691
Repository: https://github.com/hlts2/gocache.git
Documentation: pkg.go.dev
# README
gocache

gocache is simple ultra fast lock-free cache library written in golang.
Requirement
Go (>= 1.9)
Installation
go get github.com/hlts2/gocache
Example
Basic Example
Set
is Set(key string, value interface{})
, so you can set any type of object.
var (
key1 = "key_1"
key2 = "key_2"
key3 = "key_3"
value1 = "value_1"
value2 = 1234
value3 = struct{}{}
)
cache := gocache.New()
// default expire is 50 Seconds
ok := cache.Set(key1, value1) // true
ok := cache.Set(key2, value2) // true
ok := cache.Set(key3, value3) // true
// get cached data
v, ok := cache.Get(key1)
v, ok := cache.Get(key2)
v, ok := cache.Get(key3)
Benchmarks
gocache vs go-cache vs gache vs gcache
The version of golang is go1.10.3 linux/amd64
Author
LICENSE
gocache released under MIT license, refer LICENSE file.