mirror of https://github.com/ledisdb/ledisdb.git
benchmark add GOMAXPROCS
This commit is contained in:
parent
80b4bf8f6a
commit
bae4ed58e4
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"github.com/siddontang/ledisdb/client/go/ledis"
|
||||
"math/rand"
|
||||
"runtime"
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
@ -246,6 +247,8 @@ func benchZRevRangeByRank() {
|
|||
}
|
||||
|
||||
func main() {
|
||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||
|
||||
flag.Parse()
|
||||
|
||||
if *number <= 0 {
|
||||
|
|
Loading…
Reference in New Issue