3 Star 0 Fork 0

Gitee 极速下载 / gcache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bluele/gcache
克隆/下载
stats_test.go 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
Jun Kimura 提交于 2016-10-05 00:06 . add cache stats.
package gcache
import (
"testing"
)
func TestStats(t *testing.T) {
var cases = []struct {
hit int
miss int
rate float64
}{
{3, 1, 0.75},
{0, 1, 0.0},
{3, 0, 1.0},
{0, 0, 0.0},
}
for _, cs := range cases {
st := &stats{}
for i := 0; i < cs.hit; i++ {
st.IncrHitCount()
}
for i := 0; i < cs.miss; i++ {
st.IncrMissCount()
}
if rate := st.HitRate(); rate != cs.rate {
t.Errorf("%v != %v", rate, cs.rate)
}
}
}
func getter(key interface{}) (interface{}, error) {
return key, nil
}
func TestCacheStats(t *testing.T) {
var cases = []struct {
builder func() Cache
rate float64
}{
{
builder: func() Cache {
cc := New(32).Simple().Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).LRU().Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).LFU().Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).ARC().Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).
Simple().
LoaderFunc(getter).
Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).
LRU().
LoaderFunc(getter).
Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).
LFU().
LoaderFunc(getter).
Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
{
builder: func() Cache {
cc := New(32).
ARC().
LoaderFunc(getter).
Build()
cc.Set(0, 0)
cc.Get(0)
cc.Get(1)
return cc
},
rate: 0.5,
},
}
for i, cs := range cases {
cc := cs.builder()
if rate := cc.HitRate(); rate != cs.rate {
t.Errorf("case-%v: %v != %v", i, rate, cs.rate)
}
}
}
Go
1
https://gitee.com/mirrors/gcache.git
git@gitee.com:mirrors/gcache.git
mirrors
gcache
gcache
master

搜索帮助