File: control

package info (click to toggle)
golang-github-philhofer-fwd 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bullseye, sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,449 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
29
30
31
32
Source: golang-github-philhofer-fwd
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>,
           Tim Potter <tpot@hpe.com>,
Section: golang
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-philhofer-fwd
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-philhofer-fwd.git
Homepage: https://github.com/philhofer/fwd
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/philhofer/fwd

Package: golang-github-philhofer-fwd-dev
Architecture: all
Depends: ${misc:Depends},
Multi-Arch: foreign
Description: Buffered Reader/Writer
 The fwd package provides a buffered reader and writer. Each has methods that
 help improve the encoding/decoding performance of some binary protocols.
 .
 The fwd.Writer and fwd.Reader type provide similar functionality to their
 counterparts in bufio, plus a few extra utility methods that simplify
 read-ahead and write-ahead. I wrote this package to improve serialization
 performance for http://github.com/philhofer/msgp, where it provided about a 2x
 speedup over bufio. However, care must be taken to understand the semantics of
 the extra methods provided by this package, as they allow the user to access
 and manipulate the buffer memory directly.