ledisdb/ssdb/tx.go

39 lines
461 B
Go
Raw Normal View History

2014-05-04 15:02:55 +04:00
package ssdb
import (
"github.com/siddontang/golib/leveldb"
)
type tx struct {
app *App
wb *leveldb.WriteBatch
}
func (app *App) newTx() *tx {
t := new(tx)
t.app = app
t.wb = app.db.NewWriteBatch()
return t
}
func (t *tx) Put(key []byte, value []byte) {
t.wb.Put(key, value)
}
func (t *tx) Delete(key []byte) {
t.wb.Delete(key)
}
func (t *tx) Commit() error {
err := t.wb.Commit()
return err
}
2014-05-05 07:37:44 +04:00
func (t *tx) Rollback() {
t.wb.Rollback()
2014-05-04 15:02:55 +04:00
}