6 RPC
Remote procedure call implementation
Python | Java | Ruby | PHP| C#
转载请注明出处:jiq?钦's technical Blog
Remote procedure call (RPC)
(using the .NET client)
在第二个教程second tutorial 中...
分类:
Web程序 时间:
2014-09-04 00:16:57
阅读次数:
370
RabbitMQ重新实现了erlang的gen_server -> gen_server2。 本文从源码角度对比二者的实现。...
分类:
其他好文 时间:
2014-09-03 16:52:06
阅读次数:
234
1 官方入门教程。 2 官方命令使用文档 3 中文教程 第一部分: Hello World 第二部分: 工作队列(Work queues) 第三部分: 发布/订阅(Publish/Subscribe) 第四部分: 路由(Routing)
分类:
其他好文 时间:
2014-09-03 14:42:26
阅读次数:
152
# --*-- coding:utf-8 --*--import pikaimport datetimeconnection = pika.BlockingConnection(pika.ConnectionParameters( 'localhost'))channel...
分类:
其他好文 时间:
2014-09-03 12:39:16
阅读次数:
167
5 Topics
Receiving messages based on a pattern
Python | Java | Ruby | PHP| C#
转载请注明出处:jiq?钦's technical Blog
Topics
(using the .NET client)
前面的教程我们已经加强了我们的日志系统,我们将只具备无脑广播的 fa...
分类:
Web程序 时间:
2014-09-03 00:19:35
阅读次数:
438
好久没有写了,最近项目用到RabbitMQ,找了一些资料试验,最后终于成功了,把安装配置的步骤分享给大家。一、Erlang安装具体过程:1.双击otp_win32_R16801.exe(不同版本可能命名字不一样),选择next2.默认安装在C盘,建议程序安装在非系统盘比如D盘(如果安装在C盘可能会出...
分类:
其他好文 时间:
2014-09-02 19:31:45
阅读次数:
466
Routing
(using the .NET client)
Where to get help
If you're having trouble going through this tutorial you can contact usthrough the discussion list or
directly.
In the previou...
分类:
Web程序 时间:
2014-09-02 00:24:44
阅读次数:
320
第一种 NAT模式? 解释:? NAT模式是最简单的实现虚拟机上网的方式,你可以这样理解:Vhost访问网络的所有数据都是由主机提供的,vhost并不真实存在于网络中,主机与网络中的任何机器都不能查看和访问到Vhost的存...
分类:
其他好文 时间:
2014-09-01 16:02:43
阅读次数:
170
1、%% 普通队列操作 in(X, 0, {queue, [_] = In, [], 1}) ->{queue, [X], In, 2}; in(X, 0, {queue, In, Out, Len}) when is_list(In), is_list(Out) -> {queue, [X|In], Out, Len + 1}; 优先级队列操作: in(X, ...
分类:
其他好文 时间:
2014-08-31 23:08:32
阅读次数:
562
3 Publish/Subscribe
Sending messages to many consumers at once
Python | Java | Ruby | PHP| C#
Publish/Subscribe
(using the .NET Client)
前面的教程我们已经学习了如何创建工作队列,工作队列背后的假设是每一个任务都被准确地递送...
分类:
Web程序 时间:
2014-08-31 22:58:12
阅读次数:
301