golang-github-robfig-go-cache 0.0.0+git20130306.9fc39e0-4 source package in Ubuntu

Changelog

golang-github-robfig-go-cache (0.0.0+git20130306.9fc39e0-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 12 to 13.
  * Set upstream metadata fields: Repository-Browse.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 14:33:33 +0000

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-robfig-go-cache_0.0.0+git20130306.9fc39e0-4.dsc 2.3 KiB 36c534db4606cebd08ce0cd2e7859961fdf4d3f71fb29ad00df8b1e4b271045b
golang-github-robfig-go-cache_0.0.0+git20130306.9fc39e0.orig.tar.xz 7.9 KiB 9dcd416cde76fe6ca47316c74f5e159685fca6bb8660658c197f48aacd624d33
golang-github-robfig-go-cache_0.0.0+git20130306.9fc39e0-4.debian.tar.xz 2.5 KiB a77db10f5596b8e181ab387135fff4505161b3efa76e3283effd8553b06e825c

No changes file available.

Binary packages built by this source

golang-github-robfig-go-cache-dev: in-memory key:value store/cache library for Go

 This package contains an in-memory key:value store/cache similar to
 memcached that is suitable for applications running on a single machine.
 Its major advantage is that, being essentially a thread-safe
 map[string]interface{} with expiration times, it doesn't need to serialize
 or transmit its contents over the network.
 .
 Any object can be stored, for a given duration or forever, and the cache can be
 safely used by multiple goroutines.
 .
 Although go-cache isn't meant to be used as a persistent datastore, the entire
 cache may be saved to and loaded from a file (or any io.Reader/Writer) to
 recover from downtime quickly.