package
0.0.0-20240731115241-c935d0647514
Repository: https://github.com/smart-echo/micro.git
Documentation: pkg.go.dev
# README
Registry Cache
Cache is a library that provides a caching layer for the 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/smart-echo/micro/registry"
"github.com/smart-echo/micro/registry/cache"
)
r := registry.NewRegistry()
cache := cache.New(r)
services, _ := cache.GetService("my.service")
# Functions
New returns a new cache.
WithLogger sets the underline logger.
WithTTL sets the cache TTL.
# Variables
No description provided by the author
# Interfaces
Cache is the registry cache interface.
# Type aliases
No description provided by the author