()
| 448 | if err == nil { |
| 449 | db.cache.Del(key) |
| 450 | } |
| 451 | return err |
| 452 | } |
| 453 | |
| 454 | func (db *DB) NewWriteBatch() driver.IWriteBatch { |
| 455 | wb := &WriteBatch{ |
| 456 | db: db, |
| 457 | wbatch: new(leveldb.Batch), |
| 458 | } |
| 459 | return wb |
| 460 | } |
| 461 | |
| 462 | func (db *DB) NewIterator() driver.IIterator { |
no outgoing calls