1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

commands: reduce memory allocations in ZAdd.

This commit is contained in:
Adrien Bustany
2015-05-11 15:41:42 +02:00
committed by Vladimir Mihailenco
parent bbfbc5f668
commit 5f85be3173
2 changed files with 23 additions and 3 deletions

View File

@ -267,3 +267,20 @@ func BenchmarkPipeline(b *testing.B) {
}
})
}
func BenchmarkZAdd(b *testing.B) {
client := redis.NewClient(&redis.Options{
Addr: redisAddr,
})
defer client.Close()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if err := client.ZAdd("key", redis.Z{float64(1), "hello"}).Err(); err != nil {
b.Fatal(err)
}
}
})
}