Sha256: 659cf0fa9d020ad557a652520ab72a86da4937c518e6d6481a12a74567e109e7

Contents?: true

Size: 754 Bytes

Versions: 180

Compression:

Stored size: 754 Bytes

Contents

# This benchmark is the simplest test of the I/O facilities in
# unicorn.  It is meant to return a fixed-sized blob to test
# the performance of things in Unicorn, _NOT_ the app.
#
# Adjusting this benchmark is done via the "bs" (byte size) and "count"
# environment variables.  "count" designates the count of elements of
# "bs" length in the Rack response body.  The defaults are bs=4096, count=1
# to return one 4096-byte chunk.
bs = ENV['bs'] ? ENV['bs'].to_i : 4096
count = ENV['count'] ? ENV['count'].to_i : 1
slice = (' ' * bs).freeze
body = (1..count).map { slice }.freeze
hdr = {
  'Content-Length' => (bs * count).to_s.freeze,
  'Content-Type' => 'text/plain'.freeze
}.freeze
response = [ 200, hdr, body ].freeze
run(lambda { |env| response })

Version data entries

180 entries across 180 versions & 14 rubygems

Version Path
unicorn-maintained-6.2.0 test/benchmark/dd.ru
unicorn-6.1.0 test/benchmark/dd.ru
unicorn-6.0.0 test/benchmark/dd.ru
unicorn-5.8.0 test/benchmark/dd.ru
unicorn-5.7.0 test/benchmark/dd.ru
unicorn-5.6.0 test/benchmark/dd.ru
unicorn-5.5.5 test/benchmark/dd.ru
unicorn-5.5.4 test/benchmark/dd.ru
unicorn-5.5.3 test/benchmark/dd.ru
unicorn-5.5.2 test/benchmark/dd.ru
unicorn-5.5.1 test/benchmark/dd.ru
unicorn-5.5.0.1.g6836 test/benchmark/dd.ru
unicorn-5.5.0 test/benchmark/dd.ru
unicorn-5.5.0.pre1 test/benchmark/dd.ru
unicorn-5.4.1 test/benchmark/dd.ru
unicorn-5.4.0 test/benchmark/dd.ru
unicorn-5.3.1 test/benchmark/dd.ru
unicorn-shopify-5.3.0 test/benchmark/dd.ru
unicorn-5.3.0 test/benchmark/dd.ru
unicorn-5.3.0.pre1 test/benchmark/dd.ru