欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Erlang
来自开放百科 - 灰狐
(版本间的差异)
第15行: | 第15行: | ||
[[Open Telecom Platform]] (OTP) is written in Erlang. | [[Open Telecom Platform]] (OTP) is written in Erlang. | ||
+ | ==Start== | ||
+ | 1> toolbar:start(). | ||
+ | 2> halt(). // 退出 | ||
+ | 3> 2 + 5. | ||
+ | 4>(42 + 77) * 66 / 3. | ||
+ | 5> [First |TheRest] = [1,2,3,4,5]. | ||
+ | 6> First. | ||
+ | 7> TheRest. | ||
+ | 8> io:format("hello world~n", []). | ||
+ | |||
+ | |||
==Tools== | ==Tools== | ||
* [[ErlyBird]] for NetBeans | * [[ErlyBird]] for NetBeans |
2008年1月31日 (四) 05:03的版本
目录 |
什么是Erlang
Erlang是一个结构化,动态类型编程语言,内建并行计算支持。最初是由爱立信专门为通信应用设计的,比如控制交换机或者变换协议等,因此非常适合于构建分布式,实时软并行计算系统。
使用Erlang编写出的应用运行时通常由成千上万个轻量级进程组成,并通过消息传递相互通讯。进程间上下文切换对于Erlang来说仅仅只是一两个环节,比起C程序的线程切换要高效得多得多了。
使用Erlang来编写分布式应用要简单的多,因为它的分布式机制是透明的:对于程序来说并不知道自己是在分布式运行。
Erlang运行时环境是一个虚拟机,有点像Java虚拟机,这样代码一经编译,同样可以随处运行。它的运行时系统甚至允许代码在不被中断的情况下更新。另外如果你需要更高效的话,字节代码也可以编译成本地代码运行。
Yaws: 一个Erlang写的服务器,据说并发能是apache的15倍
Erlang + Yaws vs. Ruby on Rails
Open Telecom Platform (OTP) is written in Erlang.
Start
1> toolbar:start(). 2> halt(). // 退出 3> 2 + 5. 4>(42 + 77) * 66 / 3. 5> [First |TheRest] = [1,2,3,4,5]. 6> First. 7> TheRest. 8> io:format("hello world~n", []).
Tools
相关链接
- 轻松实现可伸缩性,容错性,和负载平衡的大规模多人在线系统 - http://blog.mylkcn.net/senzung.php
- http://forum.javaeye.com/viewtopic.php?t=22318
- http://yaws.hyber.org/
- 分布式、并行计算语言Erlang 学习笔记(第一部分) http://computebank.spaces.live.com/blog/cns!955689A6CF175077!326.entry
- 分布式、并行计算语言Erlang 学习笔记(第二部分) http://computebank.spaces.live.com/blog/cns!955689A6CF175077!356.entry
- 分布式、并行计算语言Erlang 学习笔记(第三部分) http://computebank.spaces.live.com/blog/cns!955689A6CF175077!439.entry
Links
- Yariv's Blog: Adventures in Open Source Erlang - http://yarivsblog.com/
- http://www.erlang.org/
- http://wagerlabs.com/
- http://erlang-china.org/
- http://download.huihoo.com/erlang/
- http://docs.huihoo.com/erlang/
分享您的观点