File: control

package info (click to toggle)
golang-github-bsm-pool 0.8.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 96 kB
  • sloc: makefile: 14
file content (31 lines) | stat: -rw-r--r-- 1,057 bytes parent folder | download | duplicates (2)
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
29
30
31
Source: golang-github-bsm-pool
Section: devel
Priority: optional
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-ginkgo-dev,
               golang-gomega-dev
Standards-Version: 4.1.1
Homepage: https://github.com/bsm/pool
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-bsm-pool
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-bsm-pool.git
Testsuite: autopkgtest-pkg-go
XS-Go-Import-Path: github.com/bsm/pool

Package: golang-github-bsm-pool-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-ginkgo-dev,
         golang-gomega-dev
Description: simple connection pool library for Golang
 BSM Pool implements a simple connection pool for Go.
 .
 Features:
   - thread-safe
   - lock-free
   - stack-based rather than queue-based
     + connections that have been used recently are more likely to be re-used
   - supports pool shrinking (reap idle connections)