1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-01 09:20:19 +00:00

Revert "Merge pull request #4325 from flycash/revert1"

This reverts commit fad897346f, reversing
changes made to e284b0ddae.
This commit is contained in:
Ming Deng
2020-12-12 21:28:58 +08:00
parent fad897346f
commit debd68cbe4
455 changed files with 30003 additions and 4667 deletions

15
adapter/cache/ssdb/ssdb.go vendored Normal file
View File

@ -0,0 +1,15 @@
package ssdb
import (
"github.com/astaxie/beego/adapter/cache"
ssdb2 "github.com/astaxie/beego/client/cache/ssdb"
)
// NewSsdbCache create new ssdb adapter.
func NewSsdbCache() cache.Cache {
return cache.CreateNewToOldCacheAdapter(ssdb2.NewSsdbCache())
}
func init() {
cache.Register("ssdb", NewSsdbCache)
}