2014-10-15 06:18:20 +04:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/siddontang/go/sync2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Stat struct {
|
2014-10-30 11:06:44 +03:00
|
|
|
GetNum sync2.AtomicInt64
|
|
|
|
GetMissingNum sync2.AtomicInt64
|
|
|
|
GetTotalTime sync2.AtomicDuration
|
|
|
|
PutNum sync2.AtomicInt64
|
|
|
|
DeleteNum sync2.AtomicInt64
|
|
|
|
IterNum sync2.AtomicInt64
|
|
|
|
IterSeekNum sync2.AtomicInt64
|
|
|
|
IterCloseNum sync2.AtomicInt64
|
|
|
|
SnapshotNum sync2.AtomicInt64
|
|
|
|
SnapshotCloseNum sync2.AtomicInt64
|
|
|
|
BatchNum sync2.AtomicInt64
|
|
|
|
BatchCommitNum sync2.AtomicInt64
|
|
|
|
BatchCommitTotalTime sync2.AtomicDuration
|
|
|
|
TxNum sync2.AtomicInt64
|
|
|
|
TxCommitNum sync2.AtomicInt64
|
|
|
|
TxCloseNum sync2.AtomicInt64
|
|
|
|
CompactNum sync2.AtomicInt64
|
|
|
|
CompactTotalTime sync2.AtomicDuration
|
2014-10-15 06:18:20 +04:00
|
|
|
}
|
|
|
|
|
2014-10-29 05:29:35 +03:00
|
|
|
func (st *Stat) statGet(v interface{}, err error) {
|
2014-10-15 06:18:20 +04:00
|
|
|
st.GetNum.Add(1)
|
|
|
|
if v == nil && err == nil {
|
|
|
|
st.GetMissingNum.Add(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (st *Stat) Reset() {
|
|
|
|
*st = Stat{}
|
|
|
|
}
|