func (self *Leveldb) Close() error { C.leveldb_close(self.cdb) C.leveldb_readoptions_destroy(self.read_options) C.leveldb_writeoptions_destroy(self.write_options) C.leveldb_cache_destroy(self.cache) return nil }
// Close deallocates the underlying memory of the Cache object. func (c *Cache) Close() { C.leveldb_cache_destroy(c.Cache) }