Tagged Questions
libevent is an API for writing event driven systems. libevent is written in C and should compile on Linux, *BSD, Mac OS X, Solaris and Windows.
28
votes
6answers
2k views
Is there any modern review of solutions to the 10000 client/sec problem
(Commonly called the C10K problem)
Is there a more contemporary review of solutions to the c10k problem (Last updated: 2 Sept 2006), specifically focused on Linux (epoll, signalfd, eventfd, ...
12
votes
5answers
2k views
Node.js for lua?
I've been playing around with node.js (nodejs) for the past few day and it is fantastic. As far as I can tell, lua doesn't have a similar integration of libev and libio which let's one avoid almost ...
8
votes
2answers
752 views
Why shouldn't I use async (evented) IO
I am writing now writing some evented code (In python using gevent) and I use the nginx as a web server and I feel both are great. I was told that there is a trade off with events but was unable to ...
7
votes
1answer
1k views
libevent, windows and .NET programming
I experiment with a lot of open source software and I've noticed a fair amount of server type applications in the open source world use libevent to facilitate event-based processing rather than spawn ...
6
votes
1answer
1k views
How scalable is Jetty?
Greetings! I wrote a highly scalable HTTP event (long-polling) server in C/C++ using libevent. However, it's messy, hardly portable, and lets face it: it's C. Let alone that I've been having some ...
5
votes
4answers
1k views
Is there a Java equivalent to libevent?
I've written a high-throughput server that handles each request in its own thread. For requests coming in it is occasionally necessary to do RPCs to one or more back-ends. These back-end RPCs are ...
3
votes
2answers
272 views
Best approach for Comet? (Non Blocking IO vs Erlang)
Perhaps the Question isnt that simple to answer... but what is your opinion? Should i either use Non-Blocking approaches (libevent for exampe) or use erlang light weight processes to:
Achieve as ...
2
votes
1answer
230 views
Using libcurl with libevent
Can anyone show (through code) or explain to me how I might use libevent and curl together in a c program? I'm trying to write a high-performance non-blocking data monitor which needs to upload data ...
2
votes
1answer
143 views
Limit connections in libevent
I want to control limit of possible libevent-http connections per process.
How can i do that ?
I didn't found any info in documentation, please help!
I think that if i didn't limit number of ...
2
votes
1answer
139 views
What is most efficient approach processing data read from socket?
I would like to use libev for a streaming server I am writing.
This is how everything is supposed to work:
client opens a TCP socket connection to server
server receives connection
client sends a ...
2
votes
1answer
793 views
Multi-process php with libevent
I am able to make a simple php websocket server with libevent , but I am stuck when I'm trying to make it multiprocessing.
for example this is single processing
<?php
$socket = ...
2
votes
1answer
697 views
How is nodejs different from running libevent?
I am curious what gives nodeJS the super concurrency that it gets right now. I have not actually used with either of these that much, just played with both in my spare time.
Sounds like the 1000s of ...
2
votes
0answers
346 views
Libevent HTTP Server & compression?
I'm using libevent2 in my application to host a http server. I cant find a built-in way to compress the output.
These are the options I'm considering:
Apply gzip/deflate compression using zlib in ...
2
votes
2answers
715 views
Reason and solution for error -“/usr/bin/ld: cannot find -levent ”?
While compiling my program which is using libevent library I am using gcc option -levent. But I am getting this error -
/usr/bin/ld: cannot find -levent
I do not have libevent on my system so I am ...
2
votes
1answer
528 views
Python http proxy library based on libevent or comparable technology?
I'm looking to build an intelligent reverse http proxy capable of routing, header examination and enrichment (eg. examine and build cookies and http headers), and various other fanciness. For a ...
1
vote
2answers
108 views
Efficient preforked server design with NBIO like epoll, kqueue using libevent
I am planning on writing a 'comet' server for 'streaming' data to clients. I have enhanced one in the past to take advantage of the multi-core CPUs but now I'm starting from scratch. I am planning to ...
1
vote
1answer
96 views
Cannot link LIBEVENT as C++
Why this does not work, file test.c:
#include <event.h>
int main(void)
{
event_init();
return 0;
}
Then:
gcc -o test.o -c test.c runs OK, but
Link:
g++ -o test -levent test.o ...
1
vote
2answers
85 views
libevent during file deletion/modification
Is to possible to use libevent to monitor a file removal/update?
Assuming that /var/log/file.1 is removed I want to report it in my program. Is this possible? If yes, how?
My operating system is ...
1
vote
1answer
304 views
A question of libevent example code: how is invoked?
I'm learning libev however the code is so hard to understand, so I choose to learn libevent first whose code is relatively clearer. But I encounter a problem when try the example ...
1
vote
1answer
265 views
can anyone explain to me how bufferevent ( in libevent) works for non-blocking sockets?
The documentation for libevent 2.0 isn't easy to understand. Can anyone point me to a tutorial?
1
vote
1answer
387 views
libevent and non-blocking sockets
I understand that in order to monitor a socket using libevent, event_set() should first be called with the correct parameters.
The libevent documentation states that the event parameter to ...
1
vote
0answers
105 views
Problem with paired bufferevents with libevent2
I have this multithreaded app with a loop for each thread and two paired bufferevents per thread to send/receive data between those and the main thread.
This in theory. In practice, ...
1
vote
1answer
236 views
Creating Qt-based gui for a libevent app
I currently use libevent heavily for C/C++ network programming and I love how easily I can make an event-based app without having to worry if I need to use select,poll,epoll,kqueues etc. The apps I've ...
1
vote
2answers
501 views
C++ libevent usage (memory leak and delete operator)
I have to files:
// event_test_delete.cpp
#include <event.h>
int main() {
event_base* ev;
ev = event_init();
delete ev;
return 0;
}
And
// ...
1
vote
1answer
197 views
Recommended patterns for writing asynchronous evented servers in C
I am writing my first single-threaded, single-process server in C using kqueue() / epoll() to handle asynchronous event dispatch. As one would expect, it is quite a lot harder to follow the flow of ...
1
vote
1answer
372 views
If i want event driven server what to use libevent or libev?
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 ...
1
vote
3answers
445 views
Problem handling file I/O with libevent2
I worked with libevent2 for some time, but usually I used it to handle network I/O (using sockets). Now I need to read many different files so I also wanted to use it. I created this code:
int file = ...
1
vote
1answer
467 views
Libevent + Comet (Long-Polling / Http-Stream)
Hey folks! Im looking for a good tutorial on how to implement a long polling or http stream server based on libevent.
The few examples which google showed up are either with errors or not exactly what ...
1
vote
2answers
399 views
libevent2 and file io
I've been toying around with libevent2, and I've got reading files working, but it blocks. Is there any way to make file reading not block just within libevent. Or, do I need to use another IO library ...
1
vote
1answer
629 views
gevent install on x86_64 fails: “undefined symbol: evhttp_accept_socket”
I'm trying to install gevent on a fresh EC2 CentOS 5.3 64-bit system.
Since the libevent version available in yum was too old for another package (beanstalkd) I compiled/installed ...
1
vote
2answers
972 views
Is libevent required for building memcached for windows?
I accidentally deleted my previous post. Could I know exactly why I should compile libevent to be able to build memcached? Actually, I can already use memcached for windows without compiling ...
1
vote
1answer
623 views
How to statically link libevent with gcc while compiling?
I have used event.h in on of my project but the server it has to run on does not support it. Moreover I can not install it also. Is there a way I can run my project with minimum modifications.
It has ...
1
vote
3answers
671 views
Know of any small projects implementing an HTTP service using libevent?
My C is a bit rusty. I have some ideas I'd like to try and realize with libevent. Do you know any codebase I can use as a reference?
0
votes
1answer
68 views
C or C++ with libevent/libev: monitor a unix socket
I'm trying to monitor a unix socket ("/tmp/mysocket").
I can do this fine in Node.js: it raises an event when 1) a socket is bound, 2) someone connects to the socket, 3) data is sent to the socket ...
0
votes
2answers
48 views
How to compile libevent2 on Windows?
I am trying to compile this libevent2 package to Windows, but currently I can't because the configure script is a shell script (/bin/sh; can't be run in Windows).
Is there any way I can compile it ...
0
votes
0answers
18 views
How do I write unit tests for an event driven application managed by libevent?
I'm writing an event driven application using the libevent library for asynchronous I/O. Essentially, the application has an evconnlistener listening for data on a port. On receiving data, the data is ...
0
votes
1answer
43 views
Compiling systrace gives “two or more data types in declaration specifiers”
I have been trying to compile systrace (1.6g) on Ubuntu. When I am using libevent 2.0.16, I get the following compilation error:
In file included from /usr/include/netdb.h:28,
from ...
0
votes
1answer
48 views
C & Libevent: add binary data to output buffer
I have an output evbuffer that I want to populate with the following data:
HTTP/1.1 200 OK
Date: Tue, 06 Dec 2011 10:35:08 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.9
Vary: ...
0
votes
0answers
49 views
build libevent under windows with cygwin?
I build libevent-2.0.16-stable under cygwin-windows with multi-thread feature support but it's seem that configure didn't detect environment as WIN32, so it did not include evthread_win32.c as a part ...
0
votes
0answers
142 views
Compiling libevent on Windows
How to compile libevent on Windows from source? (with MinGW) or alternatively, where one can obtain a pre-compiled library (DLL)? It can be easily compiled with VS2010 but that's not what I want ...
0
votes
0answers
60 views
Libevent and file I/O
Does the libevent deal with buffered file I/O? I know it handles sockets pretty good, but does it concern also normal files or it's "only" an epoll/... wrapper?
0
votes
2answers
72 views
Added value of libevent
If we want mainly an epoll based loop over file-descriptors, what else features does the libevent offer (not interested in http or dns stuff)??
I know it's quite a big project, but it looks quite ...
0
votes
1answer
226 views
Libev on Windows
Considering libevent vs. libev. Does the libev library have native support of IOCP on Windows?
0
votes
1answer
130 views
Callback to member function using libevent
I am trying to pass a member function to libevent which should be treated as a callback.
#include <event.h>
class A
{
public:
void eventcb(evutil_socket_t fd, short events, void ...
0
votes
1answer
160 views
User triggered event in libevent
I am currently writing a multi-threaded application using libevent.
Some events are triggered by IO, but I need a couple of events that are triggered accross threads by the code itself, using ...
0
votes
1answer
136 views
using libevent to read a continuous http stream and sending data at random times
Firstly I think I need to say that I'm still learning C++ so apologies if this is blindingly obvious/simple.
I'm trying to use the libevent library (by trying I've looked through code in the sample ...
0
votes
1answer
322 views
Brodcast TCP-Server with libevent
I am looking for some sample code of a dead simple libevent-based TCP-Server which brodcasts incoming Messages to all connected clients. On the Web I only found TCP-Servers which echoes back messages.
...
0
votes
2answers
606 views
libevent and epoll,which is more efficient?
I think these are the two event-dealing libraries among the best.
These two both have many users,but which is better?
0
votes
0answers
387 views
PHP Libevent Problem
I've been playing around with libevent extension in PHP but I can't even get even the most simple examples available on the PHP Manual to work, here some code I put together:
function Event($stream, ...
0
votes
1answer
432 views
How to use libusb with libevent?
I'm writing event-driven application using libevent and I need to do usb transfer using libusb-1.0.
I wanted to use libusb_get_pollfds to get fds and add them to libevent like this:
const struct ...