ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/README
(Generate patch)

Comparing libev/README (file contents):
Revision 1.3 by root, Tue Oct 30 23:54:38 2007 UTC vs.
Revision 1.20 by root, Thu Apr 24 08:02:15 2008 UTC

1libev is modelled after libevent (http://monkey.org/~provos/libevent/), but aims 1libev is a high-performance event loop/event model with lots of features.
2to be faster and more correct, and also more featureful. Examples: 2(see benchmark at http://libev.schmorp.de/bench.html)
3 3
4- multiple watchers can wait for the same event without deregistering others.
5 (registering two read events on fd 10 and unregistering one will not
6 break the other)
7 4
8- fork() is supported and can be handled 5ABOUT
9 (there is no way to recover from a fork when libevent is active)
10 6
11- timers are handled as a priority queue 7 Homepage: http://software.schmorp.de/pkg/libev
12 (libevent uses a less efficient red-black tree) 8 Mailinglist: libev@lists.schmorp.de
9 http://lists.schmorp.de/cgi-bin/mailman/listinfo/libev
10 Library Documentation: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod
13 11
14- supports absolute (wallclock-based) timers in addition to relative ones, 12 Libev is modelled (very losely) after libevent and the Event perl
15 i.e. can schedule timers to occur after n seconds, or at a specific time. 13 module, but is faster, scales better and is more correct, and also more
14 featureful. And also smaller. Yay.
16 15
17- timers can be repeating (both absolute and relative ones) 16 Some of the specialties of libev not commonly found elsewhere are:
17
18 - extensive and detailed, readable documentation (not doxygen garbage).
19 - fully supports fork, can detect fork in various ways and automatically
20 re-arms kernel mechanisms that do not support fork.
21 - highly optimised select, poll, epoll, kqueue and event ports backends.
22 - filesystem object (path) watching (with optional linux inotify support).
23 - wallclock-based times (using absolute time, cron-like).
24 - relative timers/timeouts (handle time jumps).
25 - fast intra-thread communication between multiple
26 event loops (with optional fast linux eventfd backend).
27 - extremely easy to embed.
28 - very small codebase, no bloated library.
29 - fully extensible by being able to plug into the event loop,
30 integrate other event loops, integrate other event loop users.
31 - very little memory use (small watchers, small event loop data).
32 - optional C++ interface allowing method and function callbacks
33 at no extra memory or runtime overhead.
34 - optional Perl interface with similar characteristics (capable
35 of running Glib/Gtk2 on libev, interfaces with Net::SNMP and
36 libadns).
37 - support for other languages (multiple C++ interfaces, D, Ruby,
38 Python) available from third-parties.
18 39
19- detects time jumps and adjusts timers 40 Examples of programs that embed libev: the EV perl module,
20 (works for both forward and backward time jumps and also for absolute timers) 41 rxvt-unicode, gvpe (GNU Virtual Private Ethernet), the Deliantra MMORPG
42 server (http://www.deliantra.net/), Rubinius (a next-generation Ruby
43 VM), the Ebb web server, the Rev event toolkit.
21 44
22- can correctly remove timers while executing callbacks
23 (libevent doesn't handle this reliably and can crash)
24 45
25- race-free signal processing 46CONTRIBUTORS
26 (libevent may delay processing signals till after the next event)
27 47
28- less calls to epoll_ctl 48 libev was written and designed by Marc Lehmann and Emanuele Giaquinta.
29 (stopping and starting an io watcher between two loop iterations will now
30 result in spuriois epoll_ctl calls)
31 49
32- usually less calls to gettimeofday and clock_gettime 50 The following people sent in patches or made other noteworthy
33 (libevent calls it on every timer event change, libev twice per iteration) 51 contributions to the design (for minor patches, see the Changes
52 file. If I forgot to include you, please shout at me, it was an
53 accident):
34 54
35- watchers use less memory 55 W.C.A. Wijngaards
36 (libevent on amd64: 152 bytes, libev: <= 56 bytes) 56 Christopher Layne
57 Chris Brody
37 58
38- library uses less memory
39 (libevent allocates large data structures wether used or not, libev
40 scales all its data structures dynamically)
41
42- no hardcoded arbitrary limits
43 (libevent contains an off-by-one bug and sometimes hardcodes a limit of
44 32000 fds)
45
46- libev separates timer, signal and io watchers from each other
47 (libevent combines them, but with libev you can combine them yourself
48 by reusing the same callback and still save memory)
49
50- simpler design, backends are potentially much simpler
51 (in libevent, backends have to deal with watchers, thus the problems)
52 (epoll backend in libevent: 366 lines, libev: 89 lines, and more features)
53
54whats missing?
55
56- evdns, evhttp, bufferevent are missing, libev is only an even library at
57 the moment.
58
59- no priority support at the moment.
60
61- kqueue, poll (libev currently implements epoll and select).
62

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines