File: control

package info (click to toggle)
golang-github-philhofer-fwd 0.0~git20151005.0.8fd9a4b-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 104 kB
  • ctags: 65
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,332 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
Source: golang-github-philhofer-fwd
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>
Build-Depends: debhelper (>= 9), dh-golang, golang-go
Standards-Version: 3.9.6
Homepage: https://github.com/philhofer/fwd
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-philhofer-fwd.git
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-philhofer-fwd.git
XS-Go-Import-Path: github.com/philhofer/fwd

Package: golang-github-philhofer-fwd-dev
Architecture: all
Depends: ${misc:Depends}, ${shlibs:Depends}
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.