<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On 3 Jun 2012, at 06:41, Anoop Thomas Mathew wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div><font face="georgia,serif">It aroused a question in me that, isn't erlang creating way too many processes, and why is that so?</font></div></span></blockquote><br></div><div>There is such a thing as too many processes - and too few.</div><div><br></div><div>The key thing about a process is that it is a single thread of control.</div><div><br></div><div>If you try to handle multiple, interdependent and interleaving tasks</div><div>in one single thread of control, bad things tend to happen, just as</div><div>it tends to do when one human being tries to handle too many things</div><div>at the same time.</div><div><br></div><div>But many threads of control need managing/coordination. Just as</div><div>human organizations become unwieldy when there are more people</div><div>than the problem calls for, too many processes in a concurrency-</div><div>oriented program tends to become a problem in itself.</div><div><br></div><div>The trick, then, is to figure out how many processes the problem calls</div><div>for, and to use that many - no more, no less.</div><div><br></div><div>Drawing inspiration from how people solve coordination problems,</div><div>including how people deal with uncertainty and inconsistencies,</div><div>can be a great help when programming Erlang.</div><div><br></div><div>BR,</div><div>Ulf W</div><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div><div>Ulf Wiger, Co-founder & Developer Advocate, Feuerlabs Inc.</div><div><a href="http://feuerlabs.com">http://feuerlabs.com</a></div></div><div><br></div></span><br class="Apple-interchange-newline">
</div>
<br></body></html>