Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattetti/filebuffer
filebuffer is a package implementing a few file-like interfaces. The implementation is backed by a byte buffer. The main purpose is to have in-memory file alternative.
https://github.com/mattetti/filebuffer
Last synced: about 1 hour ago
JSON representation
filebuffer is a package implementing a few file-like interfaces. The implementation is backed by a byte buffer. The main purpose is to have in-memory file alternative.
- Host: GitHub
- URL: https://github.com/mattetti/filebuffer
- Owner: mattetti
- License: mit
- Created: 2016-04-10T05:53:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T08:12:44.000Z (about 2 years ago)
- Last Synced: 2024-10-14T21:19:31.278Z (3 months ago)
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 143
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# filebuffer
filebuffer is a package implementing a few file-like interfaces such as `io.Reader`, `io.ReaderAt`, `io.Seeker` and more.
The implementation is backed by a byte buffer and the main purpose is to have in-memory alternative to using an io.File.More information can be found on the [GoDoc page](https://godoc.org/github.com/mattetti/filebuffer).
[![GoDoc](http://godoc.org/github.com/mattetti/filebuffer?status.svg)](http://godoc.org/github.com/mattetti/filebuffer)
[![Build Status](https://travis-ci.org/mattetti/filebuffer.png)](https://travis-ci.org/mattetti/filebuffer)