zstd-ruby
zstd-ruby copied to clipboard
Ruby binding for zstd(Zstandard - Fast real-time compression algorithm)
Fixes https://github.com/SpringMT/zstd-ruby/issues/87 Example use case: read_buffer = "".force_encoding(Encoding::ASCII_8BIT) loop do logger.debug("read partial") buf = reader.readpartial(64 * 1024) read_buffer
I have a tcp connection that receives the zstd compressed data. Let's assume I do a `data = socket.read(16*1024)` and this fills my data with a zstd frame and another...
I'm trying to nest streams in order to have streaming compressed uploads/downloads of large files with S3 With zlib, I could use `Zlib::GzipWriter.wrap` / `Zlib::GzipReader.wrap`, but there doesn't seem to...
First of all, I'm grateful for this library. It has served me well over the last year or so. But I couldn't help but notice that you've recently made API...
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. This repository currently has no open or pending branches. ## Detected dependencies bundler Gemfile...
A few small suggestions: - Clarify connection to zstd. - Drop gem install instruction, bundle is part of Ruby standard library nowadays - Remove JRuby example, it's likely to get...
I have the following code, where I try to 'simple' decompress json lines compressed with streaming compression. When comparing to decompressions from a 'simple' compressed string I mostly get the...