Exemplo n.º 1
0
 protected override void FreeUnManagedObjects()
 {
     LevelDBInterop.leveldb_cache_destroy(this.Handle);
 }
Exemplo n.º 2
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)
 {
     this.Handle = LevelDBInterop.leveldb_cache_create_lru(capacity);
 }