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