benchmark add GOMAXPROCS

This commit is contained in:
siddontang 2014-10-24 20:32:49 +08:00
parent 80b4bf8f6a
commit bae4ed58e4
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import (
"fmt" "fmt"
"github.com/siddontang/ledisdb/client/go/ledis" "github.com/siddontang/ledisdb/client/go/ledis"
"math/rand" "math/rand"
"runtime"
"sync" "sync"
"sync/atomic" "sync/atomic"
"time" "time"
@ -246,6 +247,8 @@ func benchZRevRangeByRank() {
} }
func main() { func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
flag.Parse() flag.Parse()
if *number <= 0 { if *number <= 0 {