Erlang/OTP 18.1 发布

jopen 8年前

Erlang/OTP 18.1 发布,此版本主要是 bug 修复,也包含一些新特性和改进。 

值得关注的改进:

  • ssl: Add possibility to downgrade an SSL/TLS connection to a tcp connection, and give back the socket control to a user process.

  • ssh: The following new key exchange algorithms are implemented:'ecdh-sha2-nistp256', 'ecdh-sha2-nistp384', 'ecdh-sha2-nistp521','diffie-hellman-group14-sha1', 'diffie-hellman-group-exchange-sha1' and 'diffie-hellman-group-exchange-sha256'. This raises the security level considerably.

  • kernel,stdlib,sasl: A mechanism for limiting the amount of text that the built-in error logger events will produce has been introduced. It is useful for limiting both the size of log files and the CPU time used to produce them


详细改进请看:

http://www.erlang.org/download/otp_src_18.1.readme


下载: http://www.erlang.org/download/otp_src_18.1.tar.gz


GitHub:https://github.com/erlang/otp/tree/OTP-18.1

Windows 二进制包:

http://www.erlang.org/download/otp_win32_18.1.exe

http://www.erlang.org/download/otp_win64_18.1.exe

HTML 文档和 Unix 手册:

http://www.erlang.org/download/otp_doc_html_18.1.tar.gz
http://www.erlang.org/download/otp_doc_man_18.1.tar.gz

文档:

http://www.erlang.org/doc

更多内容请看发行说明

Erlang是一个结构化,动态类型编程语言,内建并行计算支持。最初是由爱立信专门为通信应用设计的,比如控制交换机或者变换协议等,因此非常适 合于构建分布式,实时软并行计算系统。

使用Erlang编写出的应用运行时通常由成千上万个轻量级进程组成,并通过消息传递相互通讯。进程间上下文切换对于Erlang来说仅仅 只是一两个环节,比起C程序的线程切换要高效得多得多了。

使用Erlang来编写分布式应用要简单的多,因为它的分布式机制是透明的:对于程序来说并不知道自己是在分布式运行。

Erlang运行时环境是一个虚拟机,有点像Java虚拟机,这样代码一经编译,同样可以随处运行。它的运行时系统甚至允许代码在不被中断 的情况下更新。另外如果你需要更高效的话,字节代码也可以编译成本地代码运行。

Yaws: 一个Erlang写的服务器,据说并发能是apache的15倍

来自:http://www.oschina.net/news/66577/erlang-18-1