cache

package
v0.0.0-...-6f18cc8 Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2020 License: BSD-3-Clause Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cache

type Cache interface {
	Set(key Key, value interface{}) (bool, error) // Добавить значение в кэш по ключу
	Get(key Key) (interface{}, bool, error)       // Получить значение из кэша по ключу
	Clear() error                                 // Очистить кэш
}

func NewCache

func NewCache(capacity int, path string) (Cache, error)

type Item

type Item struct {
	Key   Key
	Value interface{}
}

type Key

type Key string

type List

type List struct {
	Info ListItem
	// contains filtered or unexported fields
}

func NewList

func NewList() *List

func (*List) Back

func (l *List) Back() *ListItem

func (*List) Front

func (l *List) Front() *ListItem

func (*List) Len

func (l *List) Len() int

func (*List) MoveToFront

func (l *List) MoveToFront(i *ListItem)

func (*List) PushBack

func (l *List) PushBack(v interface{}) *ListItem

func (*List) PushFront

func (l *List) PushFront(v interface{}) *ListItem

func (*List) Remove

func (l *List) Remove(i *ListItem)

type ListInterface

type ListInterface interface {
	Len() int                          // длина списка
	Front() *ListItem                  // первый Item
	Back() *ListItem                   // последний Item
	PushFront(v interface{}) *ListItem // добавить значение в начало
	PushBack(v interface{}) *ListItem  // добавить значение в конец
	Remove(i *ListItem)                // удалить элемент
	MoveToFront(i *ListItem)           // переместить элемент в начало
}

type ListItem

type ListItem struct {
	Value interface{} // значение
	Next  *ListItem   // следующий элемент
	Prev  *ListItem   // предыдущий элемент
}

Jump to

Keyboard shortcuts

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