Example #1
0
func BenchmarkMemStoreAddGetTransient(b *testing.B) {
	store := New(0, true)
	testdata.BenchmarkAddGet(store, b)
}
Example #2
0
func BenchmarkMemStoreAddGet(b *testing.B) {
	store := New(0, false)
	testdata.BenchmarkAddGet(store, b)
}