From ad7772cdfd93941fa8a97fd2ba8f071ff7124962 Mon Sep 17 00:00:00 2001
From: Jeevanandam M Inmemory Cache Provider by aah framework
+
+ High performance, eviction modes (TTL, NoTTL, Slide), goroutine safe inmemory cache provider. Library keeps cache entries on heap but omits GC and without impact on performance by applying trick of [go1.5 map non-pointer values](https://github.com/golang/go/issues/9477). ### News - * `v0.1.0` [released](https://github.com/go-aah/inmemory-cache-provider/releases/latest) and tagged on TBD. + * `v0.1.0` [released](https://github.com/go-aah/inmemory-cache-provider/releases/latest) and tagged on Dec 02, 2018. ## Usage diff --git a/go.mod b/go.mod index e641a93..c2e1abc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module aahframe.work/cache/provider/inmemory require ( - aahframe.work v0.0.0-20181126051259-b64fdc6b18f6 + aahframe.work v0.12.0 github.com/stretchr/testify v1.2.2 )