mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
// Copyright 2015 CoreOS, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package storage
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
|
|
"github.com/coreos/etcd/lease"
|
|
"github.com/coreos/etcd/storage/backend"
|
|
)
|
|
|
|
func BenchmarkStorePut(b *testing.B) {
|
|
be, tmpPath := backend.NewDefaultTmpBackend()
|
|
s := NewStore(be, &lease.FakeLessor{})
|
|
defer cleanup(s, be, tmpPath)
|
|
|
|
// arbitrary number of bytes
|
|
bytesN := 64
|
|
keys := createBytesSlice(bytesN, b.N)
|
|
vals := createBytesSlice(bytesN, b.N)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
s.Put(keys[i], vals[i], lease.NoLease)
|
|
}
|
|
}
|
|
|
|
// BenchmarkStoreTxnPut benchmarks the Put operation
|
|
// with transaction begin and end, where transaction involves
|
|
// some synchronization operations, such as mutex locking.
|
|
func BenchmarkStoreTxnPut(b *testing.B) {
|
|
be, tmpPath := backend.NewDefaultTmpBackend()
|
|
s := NewStore(be, &lease.FakeLessor{})
|
|
defer cleanup(s, be, tmpPath)
|
|
|
|
// arbitrary number of bytes
|
|
bytesN := 64
|
|
keys := createBytesSlice(bytesN, b.N)
|
|
vals := createBytesSlice(bytesN, b.N)
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
id := s.TxnBegin()
|
|
if _, err := s.TxnPut(id, keys[i], vals[i], lease.NoLease); err != nil {
|
|
log.Fatalf("txn put error: %v", err)
|
|
}
|
|
s.TxnEnd(id)
|
|
}
|
|
}
|