Files
opencloud/vendor/go-micro.dev/v4/registry/cache
Jörn Friedrich Dreyer 50176f6f6b fix node cache ttl updates
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
2024-11-15 14:33:48 +01:00
..
2024-11-15 14:33:48 +01:00
2024-02-21 10:20:36 +01:00
2024-02-21 10:20:36 +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")