Go to file
2021-05-09 21:57:22 +00:00
.github Merge pull request #4 from unistack-org/renovate/golangci-golangci-lint-action-2.x 2021-02-10 23:40:38 +03:00
.synced use own fork 2020-10-02 12:26:13 +03:00
cache.go fix logger 2020-10-02 12:28:33 +03:00
go.mod Update module github.com/unistack-org/micro/v3 to v3.3.17 2021-05-09 21:57:22 +00:00
go.sum use own fork 2020-10-02 12:26:13 +03:00
options.go Add rcache => cache 2020-09-20 17:12:31 +03:00
README.md Update README.md 2020-09-20 17:12:31 +03:00
renovate.json Add renovate.json 2021-02-08 23:12:40 +00:00

Registry Cache

Cache is a library that provides a caching layer for the go-micro registry.

If you're looking for caching in your microservices use the selector.

Interface

// Cache is the registry cache interface
type Cache interface {
	// embed the registry interface
	registry.Registry
	// stop the cache watcher
	Stop()
}

Usage

import "github.com/micro/go-micro/registry/cache"

# create a new cache
c := cache.New(registry)

# get a service from the cache
services, _ := c.GetService("helloworld")