cache

package
v3.0.0-...-838862a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2023 License: AGPL-3.0 Imports: 0 Imported by: 0

Documentation

Overview

Package cache provides an interface which can be implemented by different cache types.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cache

type Cache interface {
	// Set stores the given key/value pair.
	Set(string, string)
	// Get returns the value for the given key and a boolean indicating if the key was found.
	Get(string) (string, bool)
	// Exists returns true if the given key exists in the cache.
	Exists(string) bool
	// Delete the given key from the cache.
	Delete(string)
	// Clear all key/value pairs from the cache.
	Clear()
	// Count the number of key/value pairs in the cache.
	Count() int
	// Keys returns all keys in the cache.
	Keys() []string
	// Values returns all values in the cache.
	Values() []string
	// Contents returns all keys in the cache encoded as a string.
	Contents() string
}

Cache is used to store key/value pairs.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL