golang-github-renekroon-ttlcache 2.3.0+ds-1 source package in Ubuntu

Changelog

golang-github-renekroon-ttlcache (2.3.0+ds-1) unstable; urgency=medium

  * New upstream release.
  * Bump Standards-Version.
  * Add Rules-Requires-Root.

 -- Sascha Steinbiss <email address hidden>  Mon, 08 Feb 2021 10:38:19 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-renekroon-ttlcache_2.3.0+ds-1.dsc 2.3 KiB 14b4766b8e713bb3d0fbe341c5785514c93679b1f5f7477f867f525b96c4808c
golang-github-renekroon-ttlcache_2.3.0+ds.orig.tar.xz 15.0 KiB f3ff0594d1ecd872eb7e4ef5d469c3f816e066b55a7e17507df64714afb4c814
golang-github-renekroon-ttlcache_2.3.0+ds-1.debian.tar.xz 2.5 KiB e321a417c2ea8f8b8d9c43252e881757d16fa27a923b8d71c4cd7d169258e574

Available diffs

No changes file available.

Binary packages built by this source

golang-github-renekroon-ttlcache-dev: In-memory string-interface{} map with expiration for Golang

 TTLCache is a simple key/value cache in golang with the following functions:
 .
   - Thread-safe
   - Individual expiring time or global expiring time, you can choose
   - Auto-Extending expiration on Get
   - DNS style TTL, see SkipTtlExtensionOnHit(bool)
   - Fast and memory efficient
   - Can trigger callback on key expiration
 .
 Project TTLCache was forked from wunderlist/ttlcache to add extra functions
 not available in the original scope. The main differences are:
 .
   - An item can store any kind of object, previously, only strings could be
     saved
   - Optionally, you can add callbacks to: check if a value should expire, be
     notified if a value expires, and be notified when new values are added
     to the cache
   - The expiration can be either global or per item
   - Can exist items without expiration time
   - Expirations and callbacks are realtime