消息队列 beanstalkd 介绍

简介:
首先 好东西 
http://kr.github.com/beanstalkd/
其次 真的是好东西 支持 java , python ,perl,ruby,erlang 和我不知道的 语言
  官方的原文介绍:
$ ./beanstalkd -d -l 10.0.1.5 -p 11300

This starts up beanstalkd as a daemon listening on address 10.0.1.5, port 11300.

Use It

Here’s an example in Ruby (see the client libraries to find your favorite language).

First, have one process put a job into the queue:

beanstalk = Beanstalk::Pool.new(['10.0.1.5:11300'])
beanstalk.put('hello')

Then start another process to take jobs out of the queue and run them:

beanstalk = Beanstalk::Pool.new(['10.0.1.5:11300'])
loop do
job = beanstalk.reserve
puts job.body # prints "hello"
job.delete
end

本文转自博客园刘凯毅的博客,原文链接:消息队列 beanstalkd 介绍,如需转载请自行联系原博主。


目录
相关文章
|
消息中间件 存储 数据可视化
消息队列使用的四种场景介绍(一)
消息队列使用的四种场景介绍
144 0
|
6月前
|
消息中间件 微服务
消息队列的适用场景
消息队列的适用场景
68 0
|
消息中间件 开发框架 Java
消息队列使用的四种场景介绍(二)
消息队列使用的四种场景介绍
|
消息中间件 负载均衡 Java
什么是优秀的消息队列
简述消息队列,优秀的消息队列的特质及RoketMQ
|
消息中间件 存储 容灾
优秀的消息队列
优秀的消息队列
65 1
|
消息中间件 存储 缓存
关于消息队列的那些事
关于消息队列的那些事
|
消息中间件 数据库
|
消息中间件 网络协议
消息队列(二)
消息队列(二)
149 0
消息队列(二)
|
消息中间件 Java 数据库
消息队列(五)
消息队列(五)
164 0
消息队列(五)
|
消息中间件 存储 缓存
常用消息队列对比
常用消息队列对比