ledisdb/store/leveldb/cache.go

21 lines
341 B
Go
Raw Normal View History

2014-07-25 13:58:00 +04:00
// +build leveldb
2014-06-19 13:19:40 +04:00
package leveldb
// #cgo LDFLAGS: -lleveldb
// #include <stdint.h>
// #include "leveldb/c.h"
import "C"
type Cache struct {
Cache *C.leveldb_cache_t
}
func NewLRUCache(capacity int) *Cache {
return &Cache{C.leveldb_cache_create_lru(C.size_t(capacity))}
}
func (c *Cache) Close() {
C.leveldb_cache_destroy(c.Cache)
}