File: control

package info (click to toggle)
golang-go-cache 0.0~git20150304-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 132 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 991 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Source: golang-go-cache
Section: devel
Priority: extra
Maintainer: pkg-go <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tim Potter <tpot@hp.com>
Build-Depends: debhelper (>= 9), dh-golang, golang-go
Standards-Version: 3.9.6
Homepage: https://github.com/pmylund/go-cache
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-go/packages/golang-go-cache.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-go-cache.git
XS-Go-Import-Path: github.com/pmylund/go-cache

Package: golang-github-pmylund-go-cache-dev
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, golang-go
Description: Go library for in-memory key/value store similar to memcached
 go-cache is 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.