TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Actor Model of Computation: Scalable Robust Information Systems [pdf]

15 pointsby dennybritzover 10 years ago

3 comments

Sniffnoyover 10 years ago
A note -- if you&#x27;re linking to arXiv, it&#x27;s better to link to the abstract (<a href="http://arxiv.org/abs/1008.1459" rel="nofollow">http:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;1008.1459</a>) rather than directly to the PDF. From the abstract, one can easily click through to the PDF; not so the reverse. And the abstract allows one to do things like see different versions of the paper (this one has 34 versions!), search for other things by the same authors, etc.
评论 #8497931 未加载
评论 #8497666 未加载
exo762over 10 years ago
<p><pre><code> However, Erlang lacks the following: Instead of using exception handling, Erlang relies on silent process failure which is supposed to be detected by nonresponse to messages of other processes. </code></pre> Only somewhat true. Sending message to non-existing process will not fail, but there is erlang:monitor&#x2F;2 API call which allows to deal with such situations.
desdivover 10 years ago
Here&#x27;s a three minute pictorial introduction to the actor model: <a href="http://adit.io/posts/2013-05-15-Locks,-Actors,-And-STM-In-Pictures.html" rel="nofollow">http:&#x2F;&#x2F;adit.io&#x2F;posts&#x2F;2013-05-15-Locks,-Actors,-And-STM-In-Pi...</a>