vote up 1 vote down star
1

Hi,

What could be the optimum programming languages (Perl, PHP, Java, Python or something else) to implement server (multi-threaded?) using tcp/ip socket serving like 1000's of clients with the streaming data?

Thanks Vishal

flag

44% accept rate
1  
Depends on what you mean by optimum. If you want the best performance, you would write it in C. That said, very few people go that route because there's a high overhead associated with developing and maintaining C code. PHP is not a great option as it's not designed for this type of application. My personal preference is towards Python. Maybe you could give us some more information on what you want to implement? – michaelmior Oct 27 at 19:46

7 Answers

vote up 0 vote down

based on the sparse information given I would say either c or erlang

link|flag
vote up 1 vote down

Erlang of course :-) But then again, your requirements are not clear ;-)

It was designed from ground up to handle multi-threaded networking applications. It's origin comes from Ericsson: they use Erlang in (some of) their networking products.

link|flag
Just based on other answers, is Erlang the answer to everything? – BobbyShaftoe Oct 28 at 0:18
@BobbyShaftoe: I am not sure I understand your question. One thing is certain: "there is no such thing as a silver bullet" – jldupont Oct 28 at 0:41
vote up 1 vote down

This doesn't precisely answer this question, but it will help answer future questions. The problem of connecting thousands of clients to the same server is known as the c10k problem. There you will find lots of answers and helpful information about setting up that kind of server.

link|flag
+1. It's a good article. – BobbyShaftoe Oct 28 at 0:18
vote up 0 vote down

What language are you most familiar with? What kind problem set do you have? A lot depends on these questions. Most popular programming languages have good documentation for doing socket programmimng. It depends on tastes. I prefer the C programming language. I'm sure some people will also chime to offer Erlang as a good language to use. Again, it depends.

link|flag
vote up 2 vote down

This is a poor question. You have to analyse your: 1) requirements 2) abilities 3) time and other factors. There is no good answer saying "you have to do it in (...)".

link|flag
vote up 0 vote down

Apple already sells an optimum multi-threaded streaming media server.

http://www.apple.com/quicktime/streamingserver/

You might be able to buy it and save yourself a lot of work.

I can't tell from your question what you're trying to do, but buying a solution is usually optimal.

link|flag
Isn't this a Quicktime streaming media server? – BobbyShaftoe Oct 27 at 19:53
vote up 0 vote down

Python with Twisted Framework

www.twistedmatrix.com

Java with XSocket or Apache Mina Frameworks (which Red5 Flash/video streaming media sever based on)

mina.apache.org

xsocket.sourceforge.net

They all are multithreaded , easy and very powerful.

link|flag

Your Answer

Get an OpenID
or

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