示例#1
0
文件: batch.go 项目: malloc-fi/vantaa
func (w *WriteBatch) Close() {
	if w.wbatch != nil {
		C.leveldb_writebatch_destroy(w.wbatch)
		w.wbatch = nil
	}

	w.gbatch = nil
}
示例#2
0
文件: batch.go 项目: janelia-flyem/go
// Close releases the underlying memory of a WriteBatch.
func (w *WriteBatch) Close() {
	C.leveldb_writebatch_destroy(w.wbatch)
}
示例#3
0
文件: batch.go 项目: Abioy/ledisdb
func (w *WriteBatch) Close() error {
	C.leveldb_writebatch_destroy(w.wbatch)
	w.wbatch = nil

	return nil
}