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

Comparing libev/README (file contents):
Revision 1.6 by root, Wed Oct 31 18:28:00 2007 UTC vs.
Revision 1.15 by ayin, Sun Nov 11 17:02:08 2007 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:
3 2
3It is modelled (very losely) after libevent
4(http://monkey.org/~provos/libevent/) and the Event perl module, but aims
5to be faster and more correct, and also more featureful.
6
7DIFFERENCES AND COMPARISON TO LIBEVENT:
8
4(comparisons relative to libevent-1.3e and libev-0.00) 9(comparisons relative to libevent-1.3e and libev-0.00, see also the benchmark
10at http://libev.schmorp.de/bench.html).
5 11
6- multiple watchers can wait for the same event without deregistering others, 12- multiple watchers can wait for the same event without deregistering others,
7 both for file descriptors as well as signals. 13 both for file descriptors as well as signals.
8 (registering two read events on fd 10 and unregistering one will not 14 (registering two read events on fd 10 and unregistering one will not
9 break the other) 15 break the other).
10 16
11- fork() is supported and can be handled 17- fork() is supported and can be handled
12 (there is no way to recover from a fork when libevent is active) 18 (there is no way to recover from a fork when libevent is active).
13 19
14- timers are handled as a priority queue 20- timers are handled as a priority queue (important operations are O(1))
15 (libevent uses a less efficient red-black tree) 21 (libevent uses a much less efficient but more complex red-black tree).
16 22
17- supports absolute (wallclock-based) timers in addition to relative ones, 23- supports absolute (wallclock-based) timers in addition to relative ones,
18 i.e. can schedule timers to occur after n seconds, or at a specific time. 24 i.e. can schedule timers to occur after n seconds, or at a specific time.
19 25
20- timers can be repeating (both absolute and relative ones) 26- timers can be repeating (both absolute and relative ones).
21 27
22- detects time jumps and adjusts timers 28- detects time jumps and adjusts timers
23 (works for both forward and backward time jumps and also for absolute timers) 29 (works for both forward and backward time jumps and also for absolute timers).
24
25- can correctly remove timers while executing callbacks
26 (libevent doesn't handle this reliably and can crash)
27 30
28- race-free signal processing 31- race-free signal processing
29 (libevent may delay processing signals till after the next event) 32 (libevent may delay processing signals till after the next event).
30 33
31- less calls to epoll_ctl 34- less calls to epoll_ctl
32 (stopping and starting an io watcher between two loop iterations will now 35 (stopping and starting an io watcher between two loop iterations will now
33 result in spuriois epoll_ctl calls) 36 result in spuriois epoll_ctl calls).
34 37
35- usually less calls to gettimeofday and clock_gettime 38- usually less calls to gettimeofday and clock_gettime
36 (libevent calls it on every timer event change, libev twice per iteration) 39 (libevent calls it on every timer event change, libev twice per iteration).
37 40
38- watchers use less memory 41- watchers use less memory
39 (libevent on amd64: 152 bytes, libev: <= 56 bytes) 42 (libevent on amd64: 152 bytes, libev: <= 56 bytes).
40 43
41- library uses less memory 44- library uses less memory
42 (libevent allocates large data structures wether used or not, libev 45 (libevent allocates large data structures wether used or not, libev
43 scales all its data structures dynamically) 46 scales all its data structures dynamically).
44 47
45- no hardcoded arbitrary limits 48- no hardcoded arbitrary limits
46 (libevent contains an off-by-one bug and sometimes hardcodes a limit of 49 (libevent contains an off-by-one bug and sometimes hardcodes a limit of
47 32000 fds) 50 32000 fds).
48 51
49- libev separates timer, signal and io watchers from each other 52- libev separates timer, signal and io watchers from each other
50 (libevent combines them, but with libev you can combine them yourself 53 (libevent combines them, but with libev you can combine them yourself
51 by reusing the same callback and still save memory) 54 by reusing the same callback and still save memory).
52 55
53- simpler design, backends are potentially much simpler 56- simpler design, backends are potentially much simpler
54 (in libevent, backends have to deal with watchers, thus the problems) 57 (in libevent, backends have to deal with watchers, thus the problems)
55 (epoll backend in libevent: 366 lines, libev: 90 lines, and more features) 58 (epoll backend in libevent: 366 lines, libev: 90 lines, and more features).
56 59
57- libev handles EBADF gracefully by removing the offending fds. 60- libev handles EBADF gracefully by removing the offending fds.
58 61
62- doesn't rely on nonportable BSD header files.
63
64- a event.h compatibility header exists, and can be used to run a wide
65 range of libevent programs unchanged (such as evdns.c).
66
67- win32 compatibility for the core parts.
68
69- the event core library (ev and event layer) compiles and works both as
70 C and C++.
71
59whats missing? 72whats missing?
60 73
61- evdns, evhttp, bufferevent are missing, libev is only an even library at 74- no event-like priority support at the moment (the ev priorities
62 the moment. 75 are not yet finished and work differently, but you can use idle watchers
76 to get a similar effect).
63 77
64- no priority support at the moment
65 78
66- kqueue, poll (libev currently implements epoll and select)
67
68- windows support (whats windows?)
69

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines