跳到內容 跳到搜尋

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!"
namespace
方法
C
D

類別公共方法

compress(source, level = Zlib::DEFAULT_COMPRESSION, strategy = Zlib::DEFAULT_STRATEGY)

使用 gzip 封裝一個字串。

# 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 的字串。

# File activesupport/lib/active_support/gzip.rb, line 27
def self.decompress(source)
  Zlib::GzipReader.wrap(StringIO.new(source), &:read)
end