В 22:00 МСК будет объявлен перерыв - 10 минут. Вы отдыхаете - мы обновляем!

yetacache

Форк
0

README.md

Yet another cache

license

A golang in-memory caching library created for the purpose of learning and using it on my projects.

Installation

go get -u github.com/xelbot/yetacache

Usage

package main
import (
"fmt"
"time"
"github.com/xelbot/yetacache"
)
func main() {
// create a new instance of cache
//
// minute - default TTL for new cache items,
// hour - interval for automatically clearing
// the cache of expired items.
cache := yetacache.New[string, int](time.Minute, time.Hour)
cache.Set("abc", 36, yetacache.DefaultTTL)
cache.Set("def", 42, 5*time.Minute)
_ = cache.Has("abc") // true
_ = cache.Has("zzz") // false
if abc, found := cache.Get("abc"); found {
fmt.Println(abc) // print 36
}
// delete item by key
cache.Delete("def")
if _, found := cache.Get("def"); !found {
fmt.Println("Not found deleted item")
}
// delete all items
cache.Clear()
if _, found := cache.Get("abc"); !found {
fmt.Println("Not found deleted item")
}
// stops the internal cleanup cycle
// that removes expired items.
cache.StopCleanup()
}

Docs

godoc or http://godoc.org/github.com/xelbot/yetacache

Powered by:

generics

Описание

Yet another cache library for fun and learning

Языки

Go

  • Shell
Сообщить о нарушении

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.