From 22a0b1feae53974ed4cfe27bcce70dba061cc5fd Mon Sep 17 00:00:00 2001 From: Greg Jones Date: Thu, 2 Nov 2017 02:26:30 +0100 Subject: [PATCH] README: Add BoltDB implementation. (#78) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 61bd830..eb2eae8 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Cache Backends - [`github.com/gregjones/httpcache/leveldbcache`](https://github.com/gregjones/httpcache/tree/master/leveldbcache) provides a filesystem-backed cache using [leveldb](https://github.com/syndtr/goleveldb/leveldb). - [`github.com/die-net/lrucache`](https://github.com/die-net/lrucache) provides an in-memory cache that will evict least-recently used entries. - [`github.com/die-net/lrucache/twotier`](https://github.com/die-net/lrucache/tree/master/twotier) allows caches to be combined, for example to use lrucache above with a persistent disk-cache. +- [`github.com/birkelund/boltdbcache`](https://github.com/birkelund/boltdbcache) provides a BoltDB implementation (based on the [bbolt](https://github.com/coreos/bbolt) fork). License -------