Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If i want event driven server what to use libevent or libev?

Tags:

c++

libevent

i want to make basic chat server using one of the event driven libarary . but what to chose ? libevent or libev what is better ? which has better c++ support ? which runes better in windows ? what is faster ? faster to develop and understand

like image 259
user63898 Avatar asked Oct 28 '25 05:10

user63898


1 Answers

I prefer libev. It's very minimalistic and some of the benchmarks (probably old) I've seen indicate it performs better. The documentation is also quite good.

like image 105
Ioan Avatar answered Oct 29 '25 19:10

Ioan