File: control

package info (click to toggle)
golang-github-karlseguin-ccache 2.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 156 kB
  • sloc: makefile: 6
file content (28 lines) | stat: -rw-r--r-- 1,231 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
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.