mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 04:07:47 +08:00
48 lines
959 B
Go
48 lines
959 B
Go
// Copyright GoFrame Author(https://goframe.org). 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 gmlock_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/os/gmlock"
|
|
)
|
|
|
|
var (
|
|
lockKey = "This is the lock key for gmlock."
|
|
)
|
|
|
|
func Benchmark_GMLock_Lock_Unlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
gmlock.Lock(lockKey)
|
|
gmlock.Unlock(lockKey)
|
|
}
|
|
}
|
|
|
|
func Benchmark_GMLock_RLock_RUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
gmlock.RLock(lockKey)
|
|
gmlock.RUnlock(lockKey)
|
|
}
|
|
}
|
|
|
|
func Benchmark_GMLock_TryLock_Unlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
if gmlock.TryLock(lockKey) {
|
|
gmlock.Unlock(lockKey)
|
|
}
|
|
}
|
|
}
|
|
|
|
func Benchmark_GMLock_TryRLock_RUnlock(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
if gmlock.TryRLock(lockKey) {
|
|
gmlock.RUnlock(lockKey)
|
|
}
|
|
}
|
|
}
|