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 33
|
Source: golang-github-iafan-cwalk
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Nilesh Patra <nilesh@debian.org>
Section: devel
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-iafan-cwalk
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-iafan-cwalk.git
Homepage: https://github.com/iafan/cwalk
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/iafan/cwalk
Package: golang-github-iafan-cwalk-dev
Architecture: all
Depends: ${misc:Depends}
Multi-Arch: foreign
Description: Concurrent filepath.Walk replacement
A concurrent version of filepath.Walk function that
scans files in a directory tree and runs a callback
for each file.
.
Since scanning (and callback execution) is done from within goroutines,
this may result in a significant performance boost on multicore systems
in cases when the bottleneck is the CPU, not the I/O.
.
Upstream tests showed ~3.5x average speed increase on an 8-core CPU
and 8 workers. For measurements, upstream used provided
bin/traversaltime.go utility that measures directory traversal time
for both concurrent (cwalk.Walk()) and standard (filepath.Walk()) functions.
|