unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 1d3cdd0ec522faa940388ff860315c5c6552968e 1789 bytes (raw)
$ git show v0.91.0:test/benchmark/README	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
 
= Performance

Unicorn is pretty fast, and we want it to get faster.  Unicorn strives
to get HTTP requests to your application and write HTTP responses back
as quickly as possible.  Unicorn does not do any background processing
while your app runs, so your app will get all the CPU time provided to
it by your OS kernel.

A gentle reminder: Unicorn is NOT for serving clients over slow network
connections.  Use nginx (or something similar) to complement Unicorn if
you have slow clients.

== dd.ru

This is a pure I/O benchmark.  In the context of Unicorn, this is the
only one that matters.  It is a standard rackup-compatible .ru file and
may be used with other Rack-compatible servers.

  unicorn -E none dd.ru

You can change the size and number of chunks in the response with
the "bs" and "count" environment variables.   The following command
will cause dd.ru to return 4 chunks of 16384 bytes each, leading to
65536 byte response:

  bs=16384 count=4 unicorn -E none dd.ru

Or if you want to add logging (small performance impact):

  unicorn -E deployment dd.ru

Eric runs then runs clients on a LAN it in several different ways:

  client@host1 -> unicorn@host1(tcp)
  client@host2 -> unicorn@host1(tcp)
  client@host3 -> nginx@host1 -> unicorn@host1(tcp)
  client@host3 -> nginx@host1 -> unicorn@host1(unix)
  client@host3 -> nginx@host2 -> unicorn@host1(tcp)

The benchmark client is usually httperf.

Another gentle reminder: performance with slow networks/clients
is NOT our problem.  That is the job of nginx (or similar).

== Contributors

This directory is maintained independently in the "benchmark" branch
based against v0.1.0.  Only changes to this directory (test/benchmarks)
are committed to this branch although the master branch may merge this
branch occassionaly.

git clone https://yhbt.net/unicorn.git