walk
walk copied to clipboard
Fast parallel version of golang filepath.Walk()
Not clear if this is expected, but when we return filepath.SkipDir, that is then transmitted back as an err to the caller of the walk.Walk() function, I would have expected...
Hi On 4748e29d5718c2df4028a6543edf86fd8cc0f881 with Go 1.9.2 go test -compiler gc -ldflags '-X github.com/MichaelTJones/walk/version.GitSHA=4748e29d5718c2df4028a6543edf86fd8cc0f881 -extldflags '\''-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '\''' --- FAIL: TestWalk (0.00s) walk_test.go:163: expected 1 error, got 2: [open testdata/d: permission...
I was able to get considerable performance improvements to walking, by increasing this static number on my very large 40 CPU systems with large disk arrays. It makes sense to...