Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> memcacheq 服務安裝與原理概述

memcacheq 服務安裝與原理概述

日期:2017/2/7 14:34:21      編輯:Linux教程
 

memcacheQ是一個單純的分布式消息隊列服務。它的安裝依賴於BerkeleyDB 和 libevent,所以要先安裝這BerkeleyDB和libevent:

 

一,BerkeleyDB

  1. 下載軟件包,http://download.oracle.com/berkeley-db/db-5.0.21.tar.gz
  2. 解壓縮後,cd build_unix
  3. ../dist/configure
  4. make
  5. sudo make install

二,libevent (需要1.4.x 或更高)

  1. 下載軟件包:http://monkey.org/~provos/libevent/
  2. 解壓縮後configure & make & make install

三,memcacheQ

  1. 下載軟件包:http://code.google.com/p/memcacheq/downloads/list
  2. 解壓縮,cd進目錄
  3. ./configure –with-bdb=/usr/local/BerkeleyDB.5.0 –with-libevent=/usr/local/lib –enable-threads
  4. make
  5. sudo make install

四,啟動memcacheQ

  1. 使用memcacheq -h 的命令來查看命令行選項
  2. 啟動memcacheq:memcacheq -d -r -H /data1/memcacheq -N -R -v -L 1024 -B 1024 > /data1/mq_error.log 2>&1

五,使用

使用以上命令啟動mq後,(注意上面的-B參數表示messag的body長度不能超過1024 bytes),使用mq時只需要用到兩個命令:set和get:

set <queue name> <flags> 0 <message_len>\r\n
<put your message body here>\r\n
STORED\r\n
get <queue name>\r\n
VALUE <queue name> <flags> <message_len>\r\n
<your message body will come here>\r\n
END\r\n

可以看到,和memcache協議基本一致,只是把key name換成queue name,而且在set的命令中,忽略了expire_time的參數。畢竟mq的數據存儲是存在berkeleyDB中,做了持久化存儲,沒有內存的過期時間。

當使用set命令時,就向指定的消息隊列中寫入了一條新消息,也就是向BerkeleyDB中新insert了一條數據,當使用get命令時,就從 指定隊列中取出一條新消息,也就是向BerkeleyDB中delete了一條數據。當使用stats查看一個指定隊列時,可以看到這個隊列一共接收了多 少消息,其中被取出了多少條。

示例:

fengbo@onlinegame-10-121:~$ telnet 127.0.0.1 22202 Trying 127.0.0.1… Connected to 127.0.0.1. Escape character is ‘^]’. set q4 0 0 5 hello STORED set q4 0 0 5 world STORED stats queue STAT q4 2/0 END get q4 VALUE q4 0 5 hello END stats queue STAT q4 2/1 END

上面執行了兩次set的命令,使用stats queue查看時,可以看到q4的隊列中共有消息2條,已取出0條;當使用get取出第一條後,再此使用stats queue查看,q4中消息有2條,其中已取出1條。

Copyright © Windows教程網 All Rights Reserved