Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated benchmark table using Bootstrap #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 12 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,23 +249,18 @@ <h3><a href="old-releases.html">Older Releases</a></h3>
<div class="m-2">
<h3>Benchmark</h3>Performance comparison using different event notification mechansims in Libevent. We declare interest in a large number of connections of which most are cold and only a few are active.

<table cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><img src="//monkey.org/~provos/libevent/libevent-benchmarks.jpg" alt="Benchmarks with one active connection"></td>

<td valign="top">&nbsp;</td>

<td align="center" valign="top"><img src="//monkey.org/~provos/libevent/libevent-benchmark2s.jpg" alt="Benchmarks with 100 active connections"></td>
</tr>

<tr>
<td valign="top">The benchmark measures how long it takes to serve one active connection and exposes scalability issues of traditional interfaces like select or poll.</td>

<td valign="top">&nbsp;</td>

<td valign="top">The benchmark measures how long it takes to serve one hundred active connections that chain writes to new connections until thousand writes and reads have happened. It exercises the event loop several times.</td>
</tr>
</table>
<div class="container text-center">
<div class="row">
<div class="col-md-6">
<img src="//monkey.org/~provos/libevent/libevent-benchmarks.jpg" alt="Benchmarks with one active connection" class="img-fluid">
<p>The benchmark measures how long it takes to serve one active connection and exposes scalability issues of traditional interfaces like select or poll.</p>
</div>
<div class="col-md-6">
<img src="//monkey.org/~provos/libevent/libevent-benchmark2s.jpg" alt="Benchmarks with 100 active connections" class="img-fluid">
<p>The benchmark measures how long it takes to serve one hundred active connections that chain writes to new connections until a thousand writes and reads have happened. It exercises the event loop several times.</p>
</div>
</div>
</div>

<h3>Programs using libevent</h3>The usefulness of libevent API is demonstrated by the following applications:

Expand Down