micro/registry/cache
Vasiliy Tolstov 06136312bb
regen files with never protoc (#6)
* regen files with never protoc
* rewrite import path

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-08-19 17:47:17 +03:00
..
cache.go regen files with never protoc (#6) 2020-08-19 17:47:17 +03:00
options.go Add rcache => cache 2019-05-31 00:22:43 +01:00
README.md Update README.md 2020-08-07 11:22:57 +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/cache"

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

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