LUPA首页
|
资讯
|
教程
|
下载
|
求职
|
方案
|
博客
|
交易
|
英文版
游客:
注册
|
登录
|
会员
|
统计
|
帮助
LUPA论坛
»
技术文档
»
ErLang专区
» 聚焦Erlang
‹‹ 上一主题
|
下一主题 ››
16
1/2
1
2
››
投票
交易
悬赏
活动
打印
|
推荐
|
订阅
|
收藏
|
开通个人空间
|
加入资讯
标题: 聚焦Erlang
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#1
发表于 2006-9-14 05:41
资料
个人空间
短消息
聚焦Erlang
Erlang
是由爱立信公司开发的一种平台式语言,可以说是一种自带了操作系统平台的编程语言,而且在这个平台上实现了并发机制、进程调度、内存管理、分布式计算、网络通讯等功能,这些功能都是完全独立于用户的操作系统的,它采用的是类似于Java一样的虚拟机的方式来实现对操作系统的独立性的。
介绍一下Erlang先:
1、并发性:Erlang的轻量级进程可以支持极高的并发性,而且在高并发的情况下内存使用相当的少。Erlang的并发性并不会受到宿主操作系统并发性的限制。
2、分布式:最开始Erlang的设计目标就是实现分布式环境,一个Erlang的虚拟机就是一个Erlang网络上的节点。一个Erlang节点可以在另一个Erlang节点上创建自己的并发进程,而子进程所在的节点可能是运行其他的操作系统的服务器。不同节点的之间的可以进行极为高效而又精确的通信,就像它们运行在同一个节点一样。
3、鲁棒形:Erlang内部建设有多种错误检测原语。我们可以通过这些原语来架设高容错性的系统。例如,一个进程可以监视其他进程的状态和活动,即使那些被监控的进程处于其他节点。在分布式状态下,我们可以把系统配置成具有Fail-over功能的分布式系统。当有其他节点出错的时候,系统会把他的运行场景自动快速的切换备份节点上。Erlang支持9个9的级别的故障率,一年只有几分钟的故障时间。
4、软实时:Erlang是一个“软”实时系统(Soft Real
Time),它可以提供毫秒级别的响应。
一般的情况下,使用Erlang系统可以比其他系统的并发能力(例如Web会话负载)放大20~30倍。
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
[广告]
推荐个超酷的web2.0相册
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#2
发表于 2006-9-14 05:46
资料
个人空间
短消息
分布式、并行计算语言Erlang 学习笔记(第一部分)
http://groups.google.com/group/e ... f80fc634c6?hl=zh-CN
Yaws
http://yaws.hyber.org/
一个Erlang写的服务器,据说并发能是apache的15倍
OpenPoker作者blog
http://blog.mylkcn.net/senzung.php
OpenPoker是一个大型多人扑克网游,内建支持了容错能力,负载平衡和无限制的规模大小。
ejabberd
http://ejabberd.jabber.ru/
这个不用介绍用途了吧,基于ErLang + Mnesia
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
[广告]
推荐个超酷的web2.0相册
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#3
发表于 2006-9-14 05:49
资料
个人空间
短消息
一些资源
下载Erlang
http://www.erlang.org/download.html
学习资料
http://www.erlang.org/doc.html
http://www.erlang.se/doc/doc-5.5.1/pdf/
示例
http://www.erlang.org/examples.html
Google讨论组
http://groups.google.com/group/erlang-china
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
[广告]
推荐个超酷的web2.0相册
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#4
发表于 2006-9-14 05:51
资料
个人空间
短消息
附上一个Yaws Hello world
<html>
<head><title>Hello world</title></head>
<body>
<h1>Hello world</h1>
<erl>
out(Arg) ->
{html, "Hello world from Yaws"}.
</erl>
</body>
</html>
保存为hello.yaws
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
sanool
LUPA团队
你好,可以打搅下吗?
UID 43
精华
19
积分 14023
帖子 2484
LUPA币 12743 点
阅读权限 200
注册 2005-8-1
#5
发表于 2006-9-14 05:53
资料
个人空间
短消息
支持
精华加置顶
研究下先
邮箱 sanool at gmail.com
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#6
发表于 2006-9-14 05:58
资料
个人空间
短消息
Yariv's Blog
http://yarivsblog.com/
学习Erlang必看
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#7
发表于 2006-9-14 06:00
资料
个人空间
短消息
Erlang Hello World
-module(hello).
-export([hello_world/0]).
hello_world()->
io:format("Hello World ~n").
-----------------------------------------------------------------------
And Executing:
hello:hello_world().
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#8
发表于 2006-9-14 06:05
资料
个人空间
短消息
Erlang Cookbook
http://schemecookbook.org/Erlang/WebHome
Python-Erlang
http://www.python.net/crew/gandalf/PyErlang/
Python-Erlang is a binding of Erlang to the Python programming language. This binding allows a python program to start an Erlang node and allow for Python to call an Erlang procedure.
Planet Erlang
http://www.planeterlang.org/
Planet Erlang syndicates RSS feeds from the Erlang community to provide unified view of what is happening in the Erlang world.
Erlang Projects
http://www.erlang-projects.org
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#9
发表于 2006-9-14 06:07
资料
个人空间
短消息
Erlang/Gtk
http://sourceforge.net/projects/erlgtk/
Gtk language binding for Erlang with Glade/Gnome support.
Erlang IDE Eclipse Plugin
http://sourceforge.net/projects/erlide/
wxErlang
http://sourceforge.net/projects/wxerlang
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
henry.ning
版主
果然很寂寞
UID 24562
精华
6
积分 892
帖子 361
LUPA币 699 点
阅读权限 100
注册 2006-9-9
来自 20644931
#10
发表于 2006-9-14 06:08
资料
个人空间
短消息
讨论Erlang请到
http://groups.google.com/group/erlang-china
*
* WELCOME to the VeriSign Global Registry Service Whois Server.
*
* Sorry, the Whois database is currently down.
*
* Please wait a while and try again. Thanks
*
16
1/2
1
2
››
投票
交易
悬赏
活动
LUPA论坛
专题指导
> 内核问题答疑
> FreeBSD专版
LUPA论坛
> 开源思想交流
> 人物专栏
> LUPA足迹
> 推进员之家
> 网页标准化
> 投稿区
> 技术交流
> 初级问答[新手区]
> 有奖评书专区
> 社区茶馆
> 美景美图
> 创业就业
> 游戏专版
> IT界评论
> 技术文档
> Linux基础
> 跨平台应用
> ErLang专区
> 软件应用
> LAMP专区
> Shell编程
> JAVA
> 高级应用
> PHP
> 邮件服务器
> 嵌入式开发
> 数据库
> FTP技术
> 网络安全
> Solaris专区
> 其他Unix系列
> windows平台开源软件介绍
> 其他编程语言
> 高校教学认证专版
> 认证公告和教学指导
> 技术支持
> 操作员认证专题
> 网管员认证专题
> LAMP工程师认证专题
> 社区管理
> 社区活动
> LUPA基金会
> 开源社区广告同盟
> 人员调整公告
Linux平台开发专版
> C/C++语言基础
> 开发工具使用
> GTK/QT图形库
> 开发包调用
> 软件包制作
合作专区
> 开源项目合作建设
> X-Vake威客系统
> Serious Game底层引擎
> 蓝迪游戏
> ExtMail
> WiseReal教育软件
> Works.lt信息化平台
> LGsearch桌面搜索
> FireFox插件开发
> LUPA考试系统
> Linuxer电子杂志
> Easyjf专版(简易JAVA框架)
> 《开源人》专区
> 恩信ERP
> 希瑞CRM
> Zen Cart购物车
> Klinux 发行版定制
当前时区 GMT+8, 现在时间是 2008-8-8 04:24
浙ICP备06002895号
Powered by
Discuz!
5.0.0
© 2001-2006
Comsenz Inc.
Processed in 0.045342 second(s), 7 queries , Gzip enabled
TOP
清除 Cookies
-
联系我们
-
LUPA开源社区
-
Archiver
-
WAP
控制面板首页
编辑个人资料
积分交易
公众用户组
好友列表
基本概况
流量统计
客户软件
发帖量记录
论坛排行
主题排行
发帖排行
积分排行
在线时间
管理团队
管理统计