ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/README
Revision: 1.9
Committed: Thu Nov 1 17:38:17 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Changes since 1.8: +28 -22 lines
Log Message:
*** empty log message ***

File Contents

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