Skip to content

Commit

Permalink
readme and go mod update for v0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Dec 2, 2018
1 parent f54e955 commit ad7772c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
<img src="https://cdn.aahframework.org/assets/img/aah-logo-64x64.png" />
<h2 align="center">Inmemory Cache Provider by aah framework</h2>
</p>
<p align="center">
<p align="center"><a href="https://github.com/go-aah/inmemory-cache-provider/releases/latest"><img src="https://img.shields.io/badge/version-v0.1.0-blue.svg" alt="Version"></a> <a href="https://godoc.org/aahframe.work/cache/provider/inmemory"><img src="https://godoc.org/aahframe.work/cache/provider/inmemory?status.svg" alt="GoDoc"></a></p>
</p>

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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
)

0 comments on commit ad7772c

Please sign in to comment.