Esempio n. 1
0
 protected override void FreeUnManagedObjects()
 {
     LevelDBInterop.leveldb_writeoptions_destroy(Handle);
 }
Esempio n. 2
0
 protected override void FreeUnManagedObjects()
 {
     LevelDBInterop.leveldb_cache_destroy(Handle);
 }
Esempio n. 3
0
 public WriteOptions()
 {
     Handle = LevelDBInterop.leveldb_writeoptions_create();
 }
Esempio n. 4
0
 /// <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);
 }