Why is packet-switching superior to circuit-switched networks?
I'm completely new to computer science and networking, so an easy-to-understand response would be very appreciated!
|
Why is packet-switching superior to circuit-switched networks? I'm completely new to computer science and networking, so an easy-to-understand response would be very appreciated!
| |||||||||
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Packet switched vs circuit switched is sort of like the postal services vs the phone company (pre-digital era). With both postal and phone services you address things to your intended recipient. For the phone call you do this once at setup when you dial, whereas with a written postal conversation you put the address on ever letter. With telephone conversation you know a lot about the properties of the call - once it's connected you're assured a pair of wires that takes some route between you and the person you called. When you send a letter though you don't really know how it gets there and more specifically you don't know how busy all of the sorting offices it passes through are. In some respects the circuit switched setup can be advantageous, if what you seek truly is guaranteed end to end channels. However in computing applications what you typically want isn't a fixed, "pipe", but a "bursty" variable service and you don't really care that everything you send goes via the same route to get there. When you set up a "call" though it requires every intermediate node to know something about the "call" since future messages won't be coming with an address, but a call ID instead. In a computer that requires a chunk of memory. If you want to do it for millions of "calls" that can be quite a lot of memory, to remember the call ID, source, destination and next hops. With packet switched the intermediate nodes don't need to be aware of the fact that they're actually carrying a conversation, all they do is look at the destination, for each packet they receive and make a destination (usually) solely based upon that. | |||||
feedback
|