sm
/
cache
1
0
Fork 0

modified test

This commit is contained in:
Giuseppe 2015-12-01 18:38:44 +01:00
parent 6399142787
commit 2491a50c66
1 changed files with 3 additions and 3 deletions

View File

@ -1618,15 +1618,15 @@ func BenchmarkDeleteExpired(b *testing.B) {
func BenchmarkLargeCache(b *testing.B) {
b.StopTimer()
tc := New(200 * time.Millisecond, 50 * time.Millisecond)
tc := New(100 * time.Millisecond, 1 * time.Millisecond)
//tc.mu.Lock()
for i := 0; i < 100000; i++ {
for i := 0; i < 1000000; i++ {
tc.Set(strconv.Itoa(i), "bar", DefaultExpiration)
}
//tc.mu.Unlock()
tc.DeleteExpired()
b.StartTimer()
for i := 100000; i <100000 + b.N; i++ {
for i := 1000000; i <1000000 + b.N; i++ {
tc.Set(strconv.Itoa(i), "bar", DefaultExpiration)
}
}