1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-20 17:00:18 +00:00
Files
.github
cache
config
context
grace
httplib
logs
metric
migration
orm
pkg
cache
memcache
redis
ssdb
README.md
cache.go
cache_test.go
conv.go
conv_test.go
file.go
memory.go
common
config
context
grace
httplib
logs
migration
orm
plugins
session
swagger
testing
toolbox
utils
validation
web
LICENSE
admin.go
admin_test.go
adminui.go
app.go
beego.go
build_info.go
config.go
config_test.go
controller.go
controller_test.go
doc.go
error.go
error_test.go
filter.go
filter_chain_test.go
filter_test.go
flash.go
flash_test.go
fs.go
hooks.go
mime.go
namespace.go
namespace_test.go
parser.go
policy.go
router.go
router_test.go
staticfile.go
staticfile_test.go
template.go
template_test.go
templatefunc.go
templatefunc_test.go
tree.go
tree_test.go
unregroute_test.go
plugins
scripts
session
swagger
test
testing
toolbox
utils
validation
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE
README.md
admin.go
admin_test.go
adminui.go
app.go
beego.go
build_info.go
config.go
config_test.go
controller.go
controller_test.go
doc.go
error.go
error_test.go
filter.go
filter_test.go
flash.go
flash_test.go
fs.go
go.mod
go.sum
hooks.go
mime.go
namespace.go
namespace_test.go
parser.go
policy.go
router.go
router_test.go
staticfile.go
staticfile_test.go
template.go
template_test.go
templatefunc.go
templatefunc_test.go
tree.go
tree_test.go
unregroute_test.go
Beego/pkg/cache
2020-08-06 16:07:18 +01:00
..
2020-08-06 16:07:18 +01:00
2020-08-06 16:07:18 +01:00
2020-08-06 16:07:18 +01:00
2020-07-22 22:55:59 +08:00
2020-08-06 16:07:18 +01:00
2020-07-22 22:55:59 +08:00
2020-08-05 17:50:05 +01:00
2020-08-06 16:07:18 +01:00
2020-08-05 17:56:11 +01:00
2020-07-22 22:55:59 +08:00

cache

cache is a Go cache manager. It can use many cache adapters. The repo is inspired by database/sql .

How to install?

go get github.com/astaxie/beego/cache

What adapters are supported?

As of now this cache support memory, Memcache and Redis.

How to use it?

First you must import it

import (
	"github.com/astaxie/beego/cache"
)

Then init a Cache (example with memory adapter)

bm, err := cache.NewCache("memory", `{"interval":60}`)	

Use it like this:

bm.Put("astaxie", 1, 10 * time.Second)
bm.Get("astaxie")
bm.IsExist("astaxie")
bm.Delete("astaxie")

Memory adapter

Configure memory adapter like this:

{"interval":60}

interval means the gc time. The cache will check at each time interval, whether item has expired.

Memcache adapter

Memcache adapter use the gomemcache client.

Configure like this:

{"conn":"127.0.0.1:11211"}

Redis adapter

Redis adapter use the redigo client.

Configure like this:

{"conn":":6039"}