Description
Highly concurrent drop-in replacement for bufio.Writer.
Writer implements highly concurrent buffering for an io.Writer object. In particular, writes will not block while a Flush() call is in progress as long as enough buffer space is available.
concurrent-writer alternatives and similar packages
Based on the "Files" category.
Alternatively, view concurrent-writer alternatives based on common mentions on social networks and blogs.
-
vfs
A pluggable, extensible, and opinionated set of filesystem functionality for Go across a number of filesystem types such as os, S3, and GCS. -
go-exiftool
Go bindings for ExifTool, the well-known library used to extract as much metadata as possible (EXIF, IPTC, ...) from files (pictures, PDF, office, ...). -
gut/yos
Simple and reliable package for file operations like copy/move/diff/list on files, directories and symbolic links. -
fileconversion
A Go library to convert various file formats to plaintext and provide related functions -
go-staticfiles
Collects assets (css, js, images...) from a different locations, tags file names with a hash for easy versioning and aggressive caching.
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of concurrent-writer or a related project?
README
concurrent-writer

Highly concurrent drop-in replacement for bufio.Writer
.
concurrent.Writer
implements highly concurrent buffering for an io.Writer
object.
In particular, writes will not block while a Flush()
call is in progress as
long as enough buffer space is available.
Note however that writes will still block in a number of cases, e.g. when another write larger than the buffer size is in progress. Also, concurrent flushes (whether explicit or triggered by the buffer filling up) will block one another.