Module: Riak::Util::Gzip
- Defined in:
- lib/riak/util/gzip.rb
Overview
Borrowed from ActiveSupport github.com/rails/rails/blob/master/activesupport/lib/active_support/gzip.rb
A convenient wrapper for the zlib standard library that allows compression/decompression of strings with gzip.
gzip = Riak::Util::Gzip.compress('compress me!')
# => "\x1F\x8B\b\x00o\x8D\xCDO\x00\x03K\xCE\xCF-(J-.V\xC8MU\x04\x00R>n\x83\f\x00\x00\x00"
Riak::Util::Gzip.decompress(gzip)
# => "compress me!"
Defined Under Namespace
Classes: Stream
Class Method Summary collapse
-
.compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) ⇒ Object
Compresses a string using gzip.
-
.decompress(source) ⇒ Object
Decompresses a gzipped string.
Class Method Details
.compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) ⇒ Object
Compresses a string using gzip.
35 36 37 38 39 40 41 |
# File 'lib/riak/util/gzip.rb', line 35 def self.compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) output = Stream.new gz = Zlib::GzipWriter.new(output, level, strategy) gz.write(source) gz.close output.string end |
.decompress(source) ⇒ Object
Decompresses a gzipped string.
30 31 32 |
# File 'lib/riak/util/gzip.rb', line 30 def self.decompress(source) Zlib::GzipReader.new(StringIO.new(source)).read end |