You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
425 B
27 lines
425 B
package goleveldb
|
|
|
|
import (
|
|
"github.com/syndtr/goleveldb/leveldb"
|
|
)
|
|
|
|
type WriteBatch struct {
|
|
db *DB
|
|
wbatch *leveldb.Batch
|
|
}
|
|
|
|
func (w *WriteBatch) Put(key, value []byte) {
|
|
w.wbatch.Put(key, value)
|
|
}
|
|
|
|
func (w *WriteBatch) Delete(key []byte) {
|
|
w.wbatch.Delete(key)
|
|
}
|
|
|
|
func (w *WriteBatch) Commit() error {
|
|
return w.db.db.Write(w.wbatch, nil)
|
|
}
|
|
|
|
func (w *WriteBatch) Rollback() error {
|
|
w.wbatch.Reset()
|
|
return nil
|
|
}
|
|
|