Active Support Gzip
zlib 標準函式庫的便利包裝器,允許使用 gzip 壓縮/解壓縮字串。
gzip = ActiveSupport::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"
ActiveSupport::Gzip.decompress(gzip)
# => "compress me!"
命名空間
方法
- C
- D
類別公開方法
compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY) 連結
使用 gzip 壓縮字串。
來源: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/gzip.rb, line 32 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) 連結
解壓縮 gzip 的字串。
來源: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/gzip.rb, line 27 def self.decompress(source) Zlib::GzipReader.wrap(StringIO.new(source), &:read) end