- 浏览: 982256 次
- 性别:
- 来自: 广州
最新评论
-
qingchuwudi:
有用,非常感谢!
erlang进程的优先级 -
zfjdiamond:
你好 这条命令 在那里输入??
你们有yum 我有LuaRocks -
simsunny22:
这个是在linux下运行的吧,在window下怎么运行escr ...
escript的高级特性 -
mozhenghua:
http://www.erlang.org/doc/apps/ ...
mnesia 分布协调的几个细节 -
fxltsbl:
A new record of 108000 HTTP req ...
Haproxy 1.4-dev2: barrier of 100k HTTP req/s crossed
文章列表
新文档重点的部分都用色彩重点标出 而且告诉你什么函数声明模块要废弃 要注意什么事项 真的很细致哦。赞个。另外R12B0的patch也出来了,在download页面里面有readme.
R12B0的文档里面写着:
6.6 Function Calls
ExprF(Expr1,...,ExprN)
ExprM:ExprF(Expr1,...,ExprN)
ExprM should evaluate to a module name and ExprF to a function name or a fun.
When including the module name, the function is said to be called by using the fully qualified function name. This is often refer ...
刚申请了虚拟主机 把blog迁移到 blog.yufeng.info 上面去了, 请各位更新书签。谢谢。
- 2008-01-04 20:19
- 浏览 1696
- 评论(1)
Percept is an application-level profiler with focus on parallelism.
Can help in finding:
– synchronization bottlenecks
– periods of few runnable processes
Makes use of new trace points in the virtual machine.
Collects data about when processes are runnable andwaiting.
Graphical interacti ...
早上的时候arbow告诉我的。 名字叫repcached 主页 http://repcached.lab.klab.org/ 支持master 和 slave 方式 虽然不难做 但是小日本做了 还是很佩服他们的细心 一样东西能够坚持做下来 做好不容易。
- 2007-11-15 16:53
- 浏览 4083
- 评论(0)
liuhongjielulu今天告诉我 稿费280已经发了 程序员投稿2篇 关于轻量服务器的 分别是
http://mryufeng.iteye.com/blog/130886
http://mryufeng.iteye.com/blog/130888
第一次写东西挣钱 发文纪念下。
- 2007-11-15 16:36
- 浏览 3309
- 评论(0)
注:Joel Reymont openpoker游戏的作者 都是非常高级的话题 涉及到实际项目的设计 编码 调试 部署 维护等话题 覆盖到大部分的otp应用 我们拭目以待。
Working title is Hardcore Erlang and it will be built around
OpenPoker. The emphasis of the book will be more on showing how to
write scalable Erlang servers and less on how to write a poker server.
Apart fro ...
原文Url: http://www.clickcaster.com/items/why-do-you-like-erlang
感觉写的非常好(激动中) 和我的经历几乎一样 得出的结论就是: erlang就是我要的 网络应用erlang足够强大了
After having turned into something of an Erlang zealot about two months ago, I've been asked this question quite frequently. I think the best way to explain this is as a coro ...
erlang R12B预览版本出来了 可以在 http://erlang.org/download/snapshots/otp_src_R12B-0.tar.gz 下载, 正在比对 看作了什么改进。
这个是erlang聚会的时候作的一个ppt 简单介绍了emulator的组成和运作原理,凑合着看把,详细的等时间沉淀再写。
正常情况下 当erlang进程发生错误没有catch的时候 emulator就会自动产生erl_crash.dump,来提供crash的时候的emulator最详细的情况,类似于unix的core dump. 其中下边几个env变量控制dump产生的行为:
ERL_CRASH_DUMP If the emulator needs to write a crash dump, the value of this variable will be the file name of the crash dump file. If the variab ...
heart由2部份组成:
1. 外部程序 heart
2. erlang port模块 heart.erl。
当开启heart的时候(erl - heart ...) 外部程序heart被erlang模块heart.erl 启动起来,监视emulator的运作. heart.erl 每隔一定的时间向heart外部程序报告状态。当外部heart没有监测到心跳的时候就要采取行动 重新运行$HEART_COMMAND所指定的命令。
heart机制有2个用处:
1. erlang虽然内置了很多supervisor 可以保证process的高可靠性 但是假如emulator死亡了,那这一切都消 ...
erlang的热部署包括2个方便的 beam(.beam)级别的和driver(.dll .so)级别的. beam级别的就简单。但是driver级别的就相对复杂很多。
先看下erl_ddll的说明:
Loading and reloading for code replacement This scenario occurs when the driver code might need replacement during operation of the Erlang emulator. Implementing d ...
Erlang R115B 的inet_ssl_dist模块有bug, 我已经定位到问题 提交到 bug mailist, erlang社区的人已经修了这个BUG,并且提交了patch. 有了SSL 通讯更安全些。
具体请参看: http://avindev.iteye.com/blog/103310
erlang kernel 带了个gen_sctp 实现了sctp的 client和server操作, 在linux 2.6 上协议栈支持 lksctp。 网络如果有双线 那么sctp就非常有用 可以起到网络冗余的作用。遗憾的是, R11B5 没有inet_sctp_dist模块 否则erlang的rpc也能走sctp, 那多美呀!
sctp可以参考ibm linux china上的文章。