1.Ranch 是一个非常优秀的tcp处理的程序框架。Cowboy的底层就是用ranch来实现的,https://github.com/extend/ranch2.Cowboy是一个超高性能超稳定的http-server。https://github.com/ninenines/cowboy3.erlang.mk超级好用的erlang构建和测试工具https://github.com/nineni...
分类:
其他好文 时间:
2015-05-27 12:15:06
阅读次数:
137
参考的http://beebole.com/blog/erlang/how-to-implement-captcha-in-erlang-web-application/,移到cowboy,废话不多说,直接贴代码注意,需要cowboy版本1.0.1创建工程rebar-creator create-a...
分类:
其他好文 时间:
2015-04-14 12:47:24
阅读次数:
152
开始: ???????? Erlang不仅是一门语言,而且是一个操作系统对于你的应用程序。Erlang developers 很少写standalone modules, 它写库或应用,然后把这些组织在一起叫做一个release。一个release包含Erl...
分类:
其他好文 时间:
2015-02-28 13:13:26
阅读次数:
123
直接贴代码route_helper.erl-module(route_helper).-export([get_routes/0]).get_routes() -> [ {'_', [%% 路由的一些情况 { "/catch_all_...
分类:
其他好文 时间:
2015-02-13 18:02:41
阅读次数:
244
http://blog.csdn.net/ubuntu64fan/article/details/40542549本文翻译自:http://ninenines.eu/docs/en/cowboy/HEAD/guide/getting_started/我没有按原文逐句翻译。仅仅是我自己的理解,力求简单...
分类:
其他好文 时间:
2015-01-08 15:13:10
阅读次数:
597
还是在那个websocket_demo的例子rebar-creator create-app websocket_demotree一下看看大概目录├── cert│ ├── cowboy-ca.crt│ ├── server.crt│ └── server.key├── src│ ├── path_...
分类:
Web程序 时间:
2015-01-03 19:47:17
阅读次数:
294
用的这里的库https://github.com/sinnus/socket.io-cowboy最新的jsx库的api换了修改socketio_data_protocol.erljsx:term_to_json(Msg)改成jsx:encode(Msg)jsx:json_to_term(Data)改...
分类:
其他好文 时间:
2015-01-01 22:29:29
阅读次数:
386
大体参考的这里,非常感谢他的例子开发的时候先下载好cowboy的库,放到~/.erlang里面code:add_pathz("/Users/mmc/erlang/3rd_libs/cowboy/ebin/").code:add_pathz("/Users/mmc/erlang/3rd_libs/co...
分类:
其他好文 时间:
2014-12-11 22:09:00
阅读次数:
256
原文链接:http://cowboy-bebop.iteye.com/blog/10355501. IDEA内存优化先看看你机器本身的配置而配置.\IntelliJ IDEA 8\bin\idea.exe.vmoptions--------------------------------------...
分类:
其他好文 时间:
2014-12-06 12:47:54
阅读次数:
185
http://4096.info/2014/05/28/mochiweb%E4%B8%8Ecowboy%E4%BD%BF%E7%94%A8json/服务器原来的socket实现机制更改为ranch了,这样可以专注维护自己的事情了。其实,之 所以采用ranch是因为我使用bigwig来在网页中对状态进...
分类:
Web程序 时间:
2014-12-02 13:17:28
阅读次数:
535