Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andybalholm/brotli
Pure Go Brotli encoder and decoder
https://github.com/andybalholm/brotli
Last synced: about 1 month ago
JSON representation
Pure Go Brotli encoder and decoder
- Host: GitHub
- URL: https://github.com/andybalholm/brotli
- Owner: andybalholm
- License: mit
- Created: 2019-03-16T01:01:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T16:53:42.000Z (2 months ago)
- Last Synced: 2024-10-29T20:32:00.722Z (about 1 month ago)
- Language: Go
- Size: 2.1 MB
- Stars: 618
- Watchers: 8
- Forks: 52
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- go-awesome - Brotli
README
This package is a brotli compressor and decompressor implemented in Go.
It was translated from the reference implementation (https://github.com/google/brotli)
with the `c2go` tool at https://github.com/andybalholm/c2go.I have been working on new compression algorithms (not translated from C)
in the matchfinder package.
You can use them with the NewWriterV2 function.
Currently they give better results than the old implementation
(at least for compressing my test file, Newton’s *Opticks*)
on levels 2 to 6.I am using it in production with https://github.com/andybalholm/redwood.
API documentation is found at https://pkg.go.dev/github.com/andybalholm/brotli?tab=doc.