Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
corinapurcarea committed Aug 12, 2020
1 parent 0966a70 commit 6fd2efd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,12 @@ Please feel free to contribute on this library and do not hesitate to open an is

## Run tests

Generate mocks:
```bash
$ GO111MODULE=on go get github.com/golang/mock/mockgen
$ make mocks
```

Test suite can be run with:

```bash
Expand Down
1 change: 0 additions & 1 deletion store/ristretto.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ func (s *RistrettoStore) GetWithTTL(key interface{}) (interface{}, time.Duration
return item, 0, err
}


// Set defines data in Ristretto memoey cache for given key identifier
func (s *RistrettoStore) Set(key interface{}, value interface{}, options *Options) error {
var err error
Expand Down

0 comments on commit 6fd2efd

Please sign in to comment.