mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 20:28:17 +08:00
81 lines
1.3 KiB
Go
81 lines
1.3 KiB
Go
// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// go test *.go -bench=".*" -benchmem
|
|
|
|
package gcache_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/os/gcache"
|
|
)
|
|
|
|
var (
|
|
cache = gcache.New()
|
|
cacheLru = gcache.New(10000)
|
|
)
|
|
|
|
func Benchmark_CacheSet(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cache.Set(i, i, 0)
|
|
i++
|
|
}
|
|
})
|
|
}
|
|
|
|
func Benchmark_CacheGet(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cache.Get(i)
|
|
i++
|
|
}
|
|
})
|
|
}
|
|
|
|
func Benchmark_CacheRemove(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cache.Remove(i)
|
|
i++
|
|
}
|
|
})
|
|
}
|
|
|
|
func Benchmark_CacheLruSet(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cacheLru.Set(i, i, 0)
|
|
i++
|
|
}
|
|
})
|
|
}
|
|
|
|
func Benchmark_CacheLruGet(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cacheLru.Get(i)
|
|
i++
|
|
}
|
|
})
|
|
}
|
|
|
|
func Benchmark_CacheLruRemove(b *testing.B) {
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
i := 0
|
|
for pb.Next() {
|
|
cacheLru.Remove(i)
|
|
i++
|
|
}
|
|
})
|
|
}
|