How many users can download a single audio file at the same time?

If 20 people are all trying to download a single audio file on my server, do they have to download it one at a time, or can they all start copying it simultaneously?

Does it matter if the file is a real audio .rm?

In order to have multiple people download the file, do I need special server software?

Thanks!

Matt

There’s a 1001 types of servers out there. Mail, http, ftp, etc. Have you even heard of fsp?

So what type of server are you talking about?

For each type of server, there can be several to 100s of different products that implement that type of service. There are 1000s of http servers available!

So what server software are you using?

Any attempt to answer your question without this info is utterly pointless.

PS: Don’t use RealMedia ever. A lot of people refuse to have that spyware on their computers.

Currently running apache web server software.

I am just asking theoretically right now: without additional special server software installed, is it possible for 20 people to download (stream) the same audio file simultaneously?

I have my website on a web server. I also have an ftp server running. Can either of these stream a single file to 20 people simultaneously without special software on the server?

Sorry for not being more precise.

There are several settings that determine how many requests can be served at once, depending on the method of threading and so on that has been set up. (MPM modules and all that.)

One thing to check on is the MaxClients value. If you set things up right, you can serve a lot of copies of the same file at the same time. (The default is 256 in some configs.) Keep in mind that everything is multiplexed so each process/thread gets to take a turn. In short, the more downloads going on, the slower each download takes. And all that process switching can really slow down the server on its own. Sort of like the SDMB…

[QUOTE=ftg]
One thing to check on is the MaxClients value. If you set things up right, you can serve a lot of copies of the same file at the same time. (The default is 256 in some configs.)

[QUOTE]

Is there any way to check the maxclients value myself? Can i like telnet into my webserver and check it or do I have to ask my host? I would prefer to learn how to check it myself.

Thanks again! Matt

Just out of curiosity, I was thinking about doing the same thing, but I have my site hosted by someone else. Naturally I’ll be checking with them, but can anyone tell me any possible pitfalls or questions I should put forth?