- 浏览: 982430 次
- 性别:
- 来自: 广州
最新评论
-
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
文章列表
Edwin , thanks for your response!
2008/7/19 Edwin Fine <emofine@gmail.com>:
Litao,
I think this is a bug in Erlang R12B-3. Certainly the documentation can be misleading, because in Programming Examples (Section 4.6: Matching Binaries), it specifically says that this construct is not ...
Concurrent Programming with Erlang/OTP by Martin Logan, Eric Merritt, Richard Carlsson and Robert Calco is now available from Manning Publications Co in an "Early Access Edition". Readers of the Erlang.org site will get a 35% discount by using erlang35 as the promotional code.
- 2009-03-03 09:46
- 浏览 1186
- 评论(3)
nmon 工具可以为 AIX 和 Linux 性能专家提供监视和分析性能数据的功能,其中包括:
* CPU 使用率
* 内存使用情况
* 内核统计信息和运行队列信息
* 磁盘 I/O 速度、传输和读/写比率
* 文件系统中的可用空间
* 磁盘适配器
* 网络 I/O 速度、传输和读/写比率
* 页面空间和页面速度
* CPU 和 AIX 规范
* 消耗资源最多的进程
* IBM HTTP Web 缓存
* 用户自定义的磁盘组
* 计算机详细信息和资源
* 异步 I/O,仅适用于 AI ...
- 2009-02-27 11:40
- 浏览 2677
- 评论(4)
1 。bitstring语法改动 添加了unicode数据类型
6.16 Bit Syntax Expressions
...
The types utf8, utf16, and utf32 specifies encoding/decoding of the Unicode Transformation Formats UTF-8, UTF-16, and UTF-32, respectively.
When constructing a segment of a utf type, Value must be an integer in one of the ranges 0..16 ...
不小心间发现webtool添加了好几个模块:
1.WebCover
2.OrberWeb
3.VisualTestServer
4.WebAppmon
5.CrashDumpViewer
都是很实用的功能哦!!
请参考 http://www.duomark.com/erlang/briefings/euc2006/index.html
Ulf大佬写的,质量有保证!
Conclusions About Erlang Receive
* Erlang makes it very easy to construct messaging systems
* Although easy to use, the language does not simplify hard problems
* Prefer to handle messages in the order receiv ...
The purpose of this presentation is to give a hands-on tutorial on Erlang
programming for multi-core.今天闲逛的时候发现了这个PDF,作者Ulf Wiger, 非常强悍哦 !同学们快看!!
Next major release R13B
The next major release R13B is planned for April 2009
A beta called R13A planned for March
Service releases approximately every second month
计划改进的性能:
1 SMP with multiple run-queues and other optimizations
2 re, new regular expression implementation officially supported
3 M ...
erlang的trap机制在实现中用的很多,在费时的BIF操作中基本上都可以看到。它的实现需要erl vm的配合。它的作用基本上有3个:
1. 把费时操作分阶段做。由于erlang是个软实时系统,一个进程或者bif不能无限制的占用cpu时间。所以erlang的每个进程执行的时候,最多只能执行一定数量的指令.这个是设计方面的目标。实现上也要配套。所以比如md5,list_member查找这种可能耗时的操作都是用trap机制来实现的,也就是说 当进程调度到的时候 执行一定数量的计算 然后把上下文trap起来 放弃执行 等待下一次的调度 来继续计算。
2. 延迟执行,实现上层的决策。 明显的例子是 ...
三个月前yufeng.info突然访问不了,但是在境外可以访问,莫名其妙的被禁了。后来ecug也被禁,才知道是没有向有关部分备案!唉,咋这么难呢,我招惹谁了!
- 2009-02-11 20:30
- 浏览 1772
- 评论(6)
XP 下双显示器,1大1小。 编程的时候 小的辅助 可以看看文档 copy paste点资料 配合ultramon随意切换窗口在那个显示器上 很方便!
- 2009-02-10 15:05
- 浏览 3854
- 评论(4)
老朱同学给我的: 《Beginning Lua Programming》 粗看了下 好像还不错!
参看: http://www.amazon.com/Beginning-Lua-Programming-Programmer/dp/0470069171 的评价!
有兴趣的同学可以读读!可以google下,找到pdf版本!
我的简介: http://www.linkedin.com/in/mryufeng 期望认识更多的朋友!
Erlang Inside: The Top Ten Erlang News Stories of 2008
from Planet Trapexit - Erlang/OTP News
http://erlanginside.com/the-top-ten-erlang-news-stories-of-2008-69
It goes without saying that 2008 was a difficult year for many with 2009 looking to be more of the same. But for the Erlang community, it ...
- 2009-01-13 19:17
- 浏览 1689
- 评论(1)
ERTS要终止一个经常的时候调用一下函数
void
erts_do_exit_process(Process* p, Eterm reason)
{
ErtsLink* lnk;
ErtsMonitor *mon;
#ifdef ERTS_SMP
erts_pix_lock_t *pix_lock = ERTS_PID2PIXLOCK(p->id);
#endif
p->arity = 0; /* No live registers */
p->fvalue = reason;
#ifdef ERTS_SMP
E ...