Rack::Brotli
¶ ↑
Rack::Brotli
compresses Rack
responses using Google’s Brotli compression algorithm.
Brotli generally compresses better than gzip
for the same CPU cost and is supported by Chrome, Firefox, IE and Opera.
Use¶ ↑
Install gem:
gem install rack-brotli
Requiring 'rack/brotli'
will autoload Rack::Brotli
module. The following example shows what a simple rackup (config.ru
) file might look like:
require 'rack' require 'rack/brotli' use Rack::Brotli run theapp
Testing¶ ↑
To run the entire test suite, run
rake test
Links¶ ↑
-
rack-brotli on GitHub:: github.com/marcotc/rack-brotli
-
Rack:: rack.rubyforge.org/
-
Rack
On GitHub:: github.com/rack/rack