mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 05:07:44 +08:00
46 lines
919 B
Go
46 lines
919 B
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// 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.
|
|
|
|
package rwmutex_test
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/internal/rwmutex"
|
|
"testing"
|
|
)
|
|
|
|
var (
|
|
safeLock = rwmutex.New(false)
|
|
unsafeLock = rwmutex.New(true)
|
|
)
|
|
|
|
func Benchmark_Safe_LockUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
safeLock.Lock()
|
|
safeLock.Unlock()
|
|
}
|
|
}
|
|
|
|
func Benchmark_Safe_RLockRUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
safeLock.RLock()
|
|
safeLock.RUnlock()
|
|
}
|
|
}
|
|
|
|
func Benchmark_UnSafe_LockUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
unsafeLock.Lock()
|
|
unsafeLock.Unlock()
|
|
}
|
|
}
|
|
|
|
func Benchmark_UnSafe_RLockRUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
unsafeLock.RLock()
|
|
unsafeLock.RUnlock()
|
|
}
|
|
}
|