Skip to content

v4.1.2

Compare
Choose a tag to compare
@eko eko released this 03 Dec 21:41
· 61 commits to master since this release
4635b6a

Major changes

Each store cache are now being separated into its own Go module, under the store directory, whine the library lives under the lib directory.

You now have to import the following Go module to use the library:

import "github.com/eko/gocache/lib/v4"

and one or multiple cache store:

import (
    "github.com/eko/gocache/store/bigcache/v4"
    "github.com/eko/gocache/store/freecache/v4"
    "github.com/eko/gocache/store/go_cache/v4"
    "github.com/eko/gocache/store/memcache/v4"
    "github.com/eko/gocache/store/pegasus/v4"
    "github.com/eko/gocache/store/redis/v4"
    "github.com/eko/gocache/store/rediscluster/v4"
    "github.com/eko/gocache/store/ristretto/v4"
)

What's Changed

Full Changelog: v3.1.2...v4.0.0