From ad7772cdfd93941fa8a97fd2ba8f071ff7124962 Mon Sep 17 00:00:00 2001 From: Jeevanandam M Date: Sun, 2 Dec 2018 02:56:53 -0800 Subject: [PATCH] readme and go mod update for v0.1.0 release --- README.md | 5 ++++- go.mod | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 779148f..7f57b75 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,15 @@

Inmemory Cache Provider by aah framework

+

+

Version GoDoc

+

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 )