micro/registry/cache
2019-08-01 23:03:11 +01:00
..
options.go Add rcache => cache 2019-05-31 00:22:43 +01:00
rcache.go Stop a goroutine leak in registy 2019-08-01 23:03:11 +01:00
README.md Add rcache => cache 2019-05-31 00:22:43 +01: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"
	"github.com/micro/go-micro/registry/cache"
)

r := registry.NewRegistry()
cache := cache.New(r)

services, _ := cache.GetService("my.service")