欢迎继续补充
#9 楼 @yukihiro_matz 本来 Dynamo 社区也想集成 Plug 的,但是
Plug was designed out of discussions surrounding Dynamo. We're currently waiting for some things to land in Plug that Dynamo needs before using it. Dynamo 的唯一维护者如是说
后来不知道啥原因就 in maintenance mode 了,怪可惜的。
#9 楼 @yukihiro_matz 仔细看 Elixir 语法,感觉坑还很多啊,各种不习惯,比如:
true and 1
和 1 and true
为啥会有区别,严格第一个参数为 boolean 有啥使用场景吗?
#11 楼 @small_fish__
Elixir 坑不多的
Elixir 的 and 就是 Erang 的 andalso,erlang 的文档是这样说的
Expr1 orelse Expr2
Expr1 andalso Expr2
Expressions where Expr2 is evaluated only if necessary. That is, Expr2 is evaluated only if Expr1 evaluates to false in an orelse expression, or only if Expr1 evaluates to true in an andalso expression. Returns either the value of Expr1 (that is, true or false) or the value of Expr2 (if Expr2 was evaluated).
#8 楼 @googya 根据 7 月 31 号的邮件:https://groups.google.com/forum/#!topic/elixir-lang-core/he1xOjQGijM
The timeline we are working with is:
目前 0.15.1 早已发布,坐等 1.0
export PATH=$PATH:$HOME/bin:$HOME/bin/elixir/bin:$HOME/bin/bin
安装 Elixir 非常方便,pull 下代码,make clean test 就 ok 了,前提是你得装 erlang
#33 楼 @lidashuang Elixir 0.13 之后的版本都要求 Erlang 17,前面的版本是没有要求的,主要是 Erlang 17 中增加了对 map
的支持