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 26 27 28
|
Source: golang-github-karlseguin-ccache
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tim Potter <tpot@hpe.com>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-golang,
golang-any,
golang-github-karlseguin-expect-dev
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-karlseguin-ccache
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-karlseguin-ccache.git
Homepage: https://github.com/karlseguin/ccache
XS-Go-Import-Path: github.com/karlseguin/ccache
Rules-Requires-Root: no
Package: golang-github-karlseguin-ccache-dev
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
golang-github-karlseguin-expect-dev
Description: Golang LRU Cache for high concurrency
CCache is an LRU Cache, written in Go, focused on supporting high
concurrency. Lock contention on the list is reduced by introducing a
window which limits the frequency that an item can get promoted,
using a buffered channel to queue promotions for a single worker, and
garbage collecting within the same thread as the worker.
|