You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-cache/bench_test.go

16 lines
270 B
Go

package cache
type BenchStr struct {
Num int
String string
}
//func Benchmark_CacheGet(b *testing.B) {
// c := New[*BenchStr](DefaultExpiration, 0)
// c.Set("foo", &BenchStr{1, "bar"}, DefaultExpiration)
//
// for i := 0; i < b.N; i++ {
// c.Get("foo")
// }
//}