Tagged Questions
c10k describes the ability of a server to handle 10,000 simultaneous clients.
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, ...
8
votes
6answers
3k views
Writing a socket-based server in Python, recommended strategies?
I was recently reading this document which lists a number of strategies that could be employed to implement a socket server. Namely, they are:
Serve many clients with each thread, and use ...
7
votes
3answers
805 views
Will PHP Die In Web Page Development World? [closed]
I know that PHP is still the most popular web programming language in the world. This question just want to bring some of my concerns about PHP.
PHP is naturally bound to C10K problem. Since PHP ...
7
votes
9answers
3k views
Java Socket Programming does not work for 10,000 clients
I can create multiple threads for supporting multi-client feature in socket programming; that's working fine. But if 10,000 clients want to be connected, my server cannot create so many threads.
How ...
6
votes
6answers
1k views
How to scale a TCP listener on modern multicore/multisocket machines
I have a daemon to write in C, that will need to handle 20-150K TCP connections simultaneously. They are long running connections, and rarely ever tear down. They have a very small amount of data ...
5
votes
3answers
1k views
How many open udp or tcp/ip connections can a linux machine have?
There are limits imposed by available memory, bandwidth, CPU, and of course, the network connectivity. But those can often be scaled vertically. Are there any other limiting factors on linux? Can they ...
5
votes
9answers
757 views
What are the theoretical performance limits on web servers?
In a currently deployed web server, what are the typical limits on its performance?
I believe a meaningful answer would be one of 100, 1,000, 10,000, 100,000 or 1,000,000 requests/second, but which ...
3
votes
1answer
179 views
How to notify client's browser about some event on server?
I'm using python (Tornado) on server side and some javascript on a client side. I have the common situation - one user send a message to another. And I want server to notify client's browser (reciever ...
3
votes
5answers
472 views
What socket-based model should I use for many simultaneous connections?
I need to know what socket-based model is the best for servers with many simultaneous connections, exactly as in an MMORPG server.
I've read about c10k, but what should I use, if for example my ...
3
votes
1answer
145 views
Handling storage of billions of pieces of information?
What is the best solution if I need to have a database with a billion+ objects and I need to have immediate (or nearly immediate) access to any of the items in the database at any time.
This database ...
2
votes
2answers
408 views
Python web server options with nonblocking architecture
I am looking for a Python based nonblocking web server environment that is designed to handle large number of simultaneous connections and be responsive under heavy load (C10K). I need it as a backend ...
2
votes
3answers
2k views
Apache and the c10k
How is Apache in respect to handling the c10k problem under normal conditions ?
Say while running very small scripts with little data, or do I need to scale out if I use Apache?
In the background ...
2
votes
3answers
1k views
Readings on writing high-performance server in Java
Could anyone please introduce books/papers/articles that I should read If I want to write a high-performance RPC server in Java, which handles large number of concurrent connections(C10K or over), is ...
1
vote
2answers
147 views
Software/system to serve large quantities of images?
At our peak hour we need to serve around 250/rps. What we're doing is accepting a url for an image, pulling the image out of memcache, and returning it via Apache.
Our currently system is a ...
0
votes
0answers
6 views
Setting up tomcat 7 for c10k and SSL
I want to write a simple chat-like application that should be able to handle thousands of clients simultaneously (COMET/Server-Push style programming). There will be many idle HTTP requests waiting ...
0
votes
2answers
37 views
high performance sockets library for windows
I saw a very nice library for sockets in POCO library.
This uses a "classic" approach that works on both linux and windows systems, mainly SELECT based approach.
I would like to know if there is ...
0
votes
4answers
457 views
Library to create high-performance server applications
I remember finding a C++ (or maybe plain C) library which does thread pooling, socket polling and other stuff, needed to write a high-performance server on Linux. (And this library was not Boost ...