protected override void FreeUnManagedObjects() { LevelDBInterop.leveldb_writeoptions_destroy(Handle); }
protected override void FreeUnManagedObjects() { LevelDBInterop.leveldb_cache_destroy(Handle); }
public WriteOptions() { Handle = LevelDBInterop.leveldb_writeoptions_create(); }
/// <summary> /// Create a new cache with a fixed size capacity. This implementation /// of Cache uses a LRU eviction policy. /// </summary> public Cache(int capacity) { Handle = LevelDBInterop.leveldb_cache_create_lru((IntPtr)capacity); }