[Erlang 0126] 我們讀過的Erlang論文


  我在Erlang Resources 豆瓣小站上發起了一個征集活動 [鏈接] ,"[征集] 我們讀過的Erlang論文",希望大家來參加.發起這樣一個活動的目的是因為Erlang相關的出版物很少,很多時候都是從學術論文中尋找答案,而發現合適的論文是第一步,這個活動就是為了解決這個問題.

 

  在一個極小的知識點可能都會有一篇精彩的論文為你條分縷析,抽絲剝繭,甚至可以拼湊起來一個完整的Erlang知識系統,我們開始吧...

 

 

《面向軟件錯誤構建可靠的分布式系統》

Making reliable distributed systems in the presence of sodware errors

地址:  http://pubftp0.availo.se/pub/FreeBSD/distfiles/erlang-doc/r13b01/armstrong_thesis_2003.pdf 

譯文地址: http://man.lupaworld.com/content/other/erlang.pdf   

備注: 沒有什么可說的,這篇論文幾乎是Erlang入門必讀,甚至在論文里面已經可以完成Erlang基礎知識的學習;

 

Concurrent Programming in ERLANG

地址: http://www.erlang.org/download/erlang-book-part1.pdf 

備注: 教科書

Characterizing the Scalability of Erlang VM on Many-core Processors

地址: http://kth.diva-portal.org/smash/get/diva2:392243/FULLTEXT01 

備注: 估計是了解Erlang VM必讀的一篇論文,在眾多涉及Erlang VM實現的博客,論文里面到處可以看到這篇論文的身影;

摘要: This section will introduce the reader to Erlang and briefly describe the Erlang compiler and virtual machine in order to give the reader some basic understanding of Erlang.

 

Exploring Alternative Memory Architectures for Erlang:Implementation and Performance Evaluation

地址: http://www.fantasi.se/publications/Wilhelmsson_MSc.pdf

備注: 文章介紹了Erlang VM垃圾回收和內存管理

 


Efficient memory management for concurrent programs that use message passing I,II

地址: http://user.it.uu.se/~kostis/Papers/scp_mm.pdf 

備注: Erlang VM 內存管理 GC

 

Heap Architectures for Concurrent Languages using Message Passing
地址: http://www.fantasi.se/publications/ISMM02.pdf

摘要:We discuss alternative heap architectures for languages that rely on automatic memory management and implement con-
currency through asynchronous message passing. We describe how interprocess communication and garbage collec-
tion happens in each architecture, and extensively discuss the tradeoffs that are involved. In an implementation set-
ting (the Erlang/OTP system) where the rest of the runtime system is unchanged, we present a detailed experimental
comparison between these architectures using both synthetic programs and large commercial products as benchmarks.
備注: 一句話總結這篇論文就是:當消息傳遞的時候本質上發生了什么

 

 

On Preserving Term Sharing in the Erlang Virtual Machine

地址: http://user.it.uu.se/~kostis/Papers/erlang12_sharing.pdf 

摘要:In this paper we describe our experiences and argue through examples why flattening terms during copying is not a good idea for

a language like Erlang. More importantly, we propose a sharing preserving copying mechanism for Erlang/OTP and describe a pub-

licly available complete implementation of this mechanism. 

 

Bit-level Binaries and Generalized Comprehensions in Erlang
地址: http://user.it.uu.se/~pergu/papers/erlang05.pdf

備注: To further simplify programming on bit streams we then show how binary comprehensions can be introduced in the language and how binary and list comprehensions can be extended to allow both binary and list generators.
備注: 簡單描述Core Erlang 和Erlang的關系,發展歷史 從Erlang代碼到Core Erlang代碼中間經歷的分析和轉換過程中是怎樣被大大簡化的.
 
 
Programming Efficiently with Binaries and Bit Strings
摘要: This paper will describe the new additions to the language and show how they can be used efficiently given the new optimizations
of binary pattern matching and binary construction. It also includes some performance numbers to give an idea of the gains that can be
made with the new optimizations.
備注:Erlang Efficiency Guide告訴你How,這篇論文告訴你Why
 
Programming Distributed Erlang Applications:Pitfalls and Recipes
編寫分布式的 Erlang 程序:陷阱和對策
備注:   基本消息傳遞保障-流語義 跨節點編程陷阱 Pid重復 消息順序
 
Parameterized modules in Erlang
備注: 這個已經成為傳說,在最新版Erlang中需要通過插件項目使用此特性
 
Design Patterns for Simulations in Erlang/OTP
備注: 不感興趣的部分就大段大段的跳過吧,這篇論文講到了 The implemented behaviours
 
 
Extended Process Registry for Erlang 
備注: gproc: Extended Process Registry 這個應該有不少人在實踐了
 
 
Troubleshooting a Large Erlang System
備注: 串講了OTP排錯工具集如何使用 
 
Static Detection of Race Conditions in Erlang
摘要: We address the problem of detecting some commonly occurring kinds of race conditions in Erlang programs using static analy-

sis. 

 

Erlang’s Exception Handling Revisited

地址: http://www.erlang.se/workshop/2004/exception.pdf 

摘要:  We give a comprehensive description of the behaviour of exceptions in modern-day Erlang , present a theoretical model of the
semantics of exceptions, and use this to derive the new try-construct.

 
 
Cleaning up Erlang Code is a Dirty Job but Somebody’s Gotta Do It
備注: 看這篇論文我們都不一定要用這個代碼自動優化工具,更有價值的是問How & Why
 
 Build Your Next Web Application with Erlang
備注: 有O'記那本小冊子,這篇論文不讀也罷
 
 
A Study of Erlang ETS Table Implementations and Performance
摘要: The viability of implementing an in-memory database, Erlang ETS, using a relatively-new data structure, called a Judy array, was studied by comparing the performance of ETS tables based on four data structures: AVL balanced binary trees, B-trees, resizable linear hash tables, and Judy arrays. 
 
 
A Stream Library using Erlang Binaries
摘要: This paper introduces the memory and behavior characteristics of lists, tuples and binaries in erlang, then continues with a de-

scription of the Bit syntax and standard methods of using binaries to deal with streamed data. Next it introduces BIF functions that
are shown to be much faster than using the traditional Bit syntax to manipulate binary data.  

 

A Scalability Benchmark Suite for Erlang/OTP

地址: http://www.softlab.ntua.gr/~gtsiour/files/erlang01-aronis.pdf 

摘要: This paper presents the main aspects of the design and the current status of bencherl, a publicly available scalability benchmark

suite for applications written in Erlang. 

 

All you wanted to know about the HiPE compiler (but might have been afraid to ask)

地址: http://user.it.uu.se/~pergu/papers/erlang03.pdf 

備注:幾乎解答了HIPE的所有常見問題

 

 

No more need for records

地址: http://www.cs.otago.ac.nz/staffpriv/ok/frames.pdf 

備注:Maps結構的緣起 設計上的取舍部分很有意思

 

 

 

未完成,待續

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM