mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 11:18:02 +08:00
33 lines
654 B
Go
33 lines
654 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 mutex_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/internal/mutex"
|
|
)
|
|
|
|
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()
|
|
}
|
|
}
|