Explanation of erlang - Mr Watson, Come Here most recent 30 from http://mrwatsoncomehere.com 2010-07-30T02:35:27Z http://mrwatsoncomehere.com/feeds/question/14 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://mrwatsoncomehere.com/questions/14/explanation-of-erlang Explanation of erlang Adso 2009-10-28T19:29:51Z 2010-07-23T04:23:02Z <p>What is an erlang?</p> http://mrwatsoncomehere.com/questions/14/explanation-of-erlang/15#15 Answer by Jon Gretar for Explanation of erlang Jon Gretar 2009-10-29T08:27:43Z 2009-10-29T20:08:09Z <p>Erlang is a general-purpose programming language and runtime system made by Ericsson. Its original main purpose was as a fault tolerant and distributed system to develop phone switches.</p> <p>While still in use in various telephoning applications it has recently been popular in general programming because of its concurrent fault-tolerant nature.</p> http://mrwatsoncomehere.com/questions/14/explanation-of-erlang/16#16 Answer by Örn Arnarson for Explanation of erlang Örn Arnarson 2009-10-29T16:41:26Z 2009-10-29T16:41:26Z <p>While Jon Gretar is right about Erlang, the programming language/runtime system, I believe Adso is asking about the measurement unit.</p> <p>An erlang is a measurement unit describing the traffic volume on a voice network in 1 hour. Basically, you take the number of calls made within a particular time frame (1 hour), the duration of those calls, then multiply them and divide by 60 (60 minutes in 1 hour).</p> <p>So, let's say that on a particular network, there are 50 calls made. For simplicity's sake, let's say that all calls were 10 minutes (or the average call duration was 10 minutes -- it works out the same).</p> <p>So then, 50 calls, 10 minutes each. 50 x 10 = 500 minutes of calls within that one hour. 500/60 = 8.33</p> <p>Therefore, the erlang for this voice network for that particular hour is 8.33.</p>