Skip to content

Commit

Permalink
Feature/mget values only (#10)
Browse files Browse the repository at this point in the history
* Added MGetValues to fetch values only on MGet

This is meant to allow more efficient and less allocations when you only care about the values.

Signed-off-by: Joseph Kratz <[email protected]>

* Added MGetValues to fetch values only on MGet

This is meant to allow more efficient and less allocations when you only care about the values.

Signed-off-by: Joseph Kratz <[email protected]>

---------

Signed-off-by: Joseph Kratz <[email protected]>
  • Loading branch information
jkratz55 authored Aug 8, 2024
1 parent 1a77e38 commit 90528ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Redis Cache is a library for caching any data structure in Redis. Redis Cache is

## Requirements

* Go 1.19+
* Go 1.22+
* Redis 6+


Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## v1.5.3

* Added MSetValues to allow fetching values only with multiple keys.

## v1.5.0

Nothing much with this release. Just updated the dependencies to the latest versions.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package cache

// Version returns the current version of redis-cache.
func Version() string {
return "1.5.2"
return "1.5.3"
}

0 comments on commit 90528ba

Please sign in to comment.