gf/g/internal/mutex/mutex_z_bench_test.go

32 lines
707 B
Go
Raw Normal View History

// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
2019-02-02 15:16:45 +08:00
//
// 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.
2019-02-02 15:16:45 +08:00
package mutex_test
import (
"github.com/gogf/gf/g/internal/mutex"
2019-02-02 15:16:45 +08:00
"testing"
)
var (
safeLock = mutex.New(false)
unsafeLock = mutex.New(true)
)
func Benchmark_Safe_LockUnlock(b *testing.B) {
for i := 0; i < b.N; i++ {
safeLock.Lock()
safeLock.Unlock()
}
}
func Benchmark_UnSafe_LockUnlock(b *testing.B) {
for i := 0; i < b.N; i++ {
unsafeLock.Lock()
unsafeLock.Unlock()
}
}