I'm trying to write a very simple web server that does the following:

  1. Receive request.
  2. Respond with a tiny file; close the connection.
  3. Handle the request data.

In other words, the response doesn't depend on the request information, but the request information is still important. The data will be persisted and then used for analytics.

I've tried to do this with some event-driven networking frameworks, but they all seem to hold the connection until the handling code returns. This makes sense, because generally a server doesn't have to do any work after responding, but in my case there's no need for this particular way of doing things.

Ideally, the server should keep responding to requests, whilst the request data is added to a stack which is emptied as it is persisted.

We expect to handle thousands of requests per second. Is event-driven programming really the way to go, or should I stick with (traditional) threads? Which language or framework is more appropriate for this kind of work?

Thanks.

link|improve this question
which platform and language are you working on now? – mauris Dec 16 '10 at 13:01
Look at nginx is free and you can look at the source code – Octopus-Paul Dec 16 '10 at 13:02
Currently I'm trying to do this in Python, but language isn't particularly important. (Though I don't really want to do anything in C. :) – strtok Dec 16 '10 at 13:07
Is one user likely to do multiple requests in quick succession, or is it more like many users each doing one request? – thirtydot Dec 16 '10 at 13:39
@thirtydot, many users each doing one request. They'll probably request a gif image, Google Analytics-style. – strtok Dec 16 '10 at 14:20
feedback

2 Answers

Have you considered using Node.js? It allows you to write http-oriented server programs quickly and easily, using javascript. It seems to be pretty well suited to your needs, as its behavior is customizable and it is said to scale pretty nicely.

You might want to consider reading some tutorials.

link|improve this answer
I have; check the question's tags. Node.js seems very nice, but as far as I know it doesn't support Thrift/Cassandra (the database I'm using for this project). I'm also not so sure it'll be able to "respond before returning" in the handling function. – strtok Dec 16 '10 at 13:18
Oh, didn't notice that. So, your question is basically "use node.js or not"? Or did you already throw that approach out of the window, as you are saying "I'm trying to do this in Python" above? If so, why? – David Dec 16 '10 at 13:22
The lack of Cassandra integration is a show-stopper, and I'm thinking maybe I should just stick with threads. I'm new to network programming, so I'm trying to get some different perspectives. – strtok Dec 16 '10 at 13:30
stackoverflow.com/questions/2947470/… and github.com/danieldkim/cassandra-node-bridge. And in node.js, you can very easily send the response before processing request data. Do it all the time :) – Vanwaril Jan 2 '11 at 19:02
feedback

I realized that instead of using the callback (or green thread, if you will) to do any sort of real work, I'd be better off just delegating the request data to an independent application. Some research into this pointed me to work queues like beanstalkd and RabbitMQ.

beanstalkd seems lighter and faster than the competition, so I'll probably stick to it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.