package
1.18.2
Repository: https://github.com/nguyencatpham/go-micro.git
Documentation: pkg.go.dev

# README

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/nguyencatpham/go-micro/registry/cache"

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

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

# Functions

New returns a new cache.
WithTTL sets the cache TTL.

# Structs

No description provided by the author

# Interfaces

Cache is the registry cache interface.

# Type aliases

No description provided by the author