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

Changelog

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

  * New upstream release.
  * Re-enable tests.
  * Add dependency on golang-uber-goleak-dev (needed in tests).
  * Bump Standards-Version.

 -- Sascha Steinbiss <email address hidden>  Sun, 20 Nov 2022 22:39:16 +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
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-renekroon-ttlcache_2.11.1+ds-1.dsc 2.3 KiB f63d4a6f8d106decb6a13e391632b3a834ebc5f8dcbab7361e5f497e8d38a9bb
golang-github-renekroon-ttlcache_2.11.1+ds.orig.tar.xz 16.5 KiB 9c7694bc626efac0743b77c7304aba65352c0252a3ae66f985f13685b03dda1e
golang-github-renekroon-ttlcache_2.11.1+ds-1.debian.tar.xz 3.1 KiB 88422297d115975f8b4c737f75f05f661c3043e6b91bfa40c7a253c3386b3881

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