package
1.9.3-RC3
Repository: https://github.com/confluentinc/confluent-kafka-go.git
Documentation: pkg.go.dev

# Functions

NewLRUCache creates a new Least Recently Used (LRU) Cache Parameters: * `capacity` - a positive integer indicating the max capacity of this cache Returns the new allocated LRU Cache and an error.
NewMapCache creates a new cache backed by a map.

# Structs

LRUCache is a Least Recently Used (LRU) Cache with given capacity.
MapCache is a cache backed by a map.

# Interfaces

Cache represents a key-value storage where to put cached data.