1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Source: golang-github-patrickmn-go-cache
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Dr. Tobias Quathamer <toddy@debian.org>
Build-Depends: debhelper (>= 11~),
dh-golang,
golang-any
Standards-Version: 4.1.3
Homepage: https://github.com/patrickmn/go-cache
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-patrickmn-go-cache.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-patrickmn-go-cache.git
XS-Go-Import-Path: github.com/patrickmn/go-cache
Testsuite: autopkgtest-pkg-go
Package: golang-github-patrickmn-go-cache-dev
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends}
Description: in-memory key:value store/cache (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.
|