tokyo tyrant 安装日志

tokyo tyrant是一个可持久化的缓存服务器,类似memcachedb,tokyo tyrant本身是个缓存服务器,但需要tokyo cabinet作为存储引擎,
就像memcachedb中的memcache需要berkeley db一样


1)安装存储引擎tokyo cabinet

  1. wgethttp: //1978th.net/tokyocabinet/tokyocabinet-1.4.42.tar.gz
  2. tarxzvftokyocabinet-1.4.42.tar.gz
  3. cdtokyocabinet-1.4.42
  4. ./configure--prefix=/path/to/tokyocabinet

报错:
configure: error: bzlib.h is required

解决
  1. sudoapt-getinstalllibbz2-dev

然后
  1. ./configure--prefix=/path/to/tokyocabinet
  2. make
  3. sudomakeinstall


2)安装toyko tyrant
  1. wgethttp: //1978th.net/tokyotyrant/tokyotyrant-1.1.40.tar.gz
  2. tarxzvftokyotyrant-1.1.40.tar.gz
  3. cdtokyotyrant-1.1.40
  4. ./configure--prefix=/path/to/tokyotyrant--enable-lua

出错:
configure: error: tcutil.h is requiredconfigure: error: tcutil.h is required

解决
  1. ./configure--prefix=/path/to/tokyotyrant--with-tc=/path/to/tokyocabinet--enable-lua


再次报错
configure: error: lua.h is required

解决
2.1)安装lua(此步骤可选,可在安装是不要--enable-lua这个选项)
  1. wgethttp: //www.lua.org/ftp/lua-5.1.4.tar.gz
  2. tarzxflua-5.1.4.tar.gz
  3. cdlua-5.1.4
  4. makelinux

发现问题:
luaconf.h:275:31: error: readline/readline.h: 没有该文件或目录
luaconf.h:276:30: error: readline/history.h: 没有该文件或目录

解决
  1. sudoapt- get installlibreadline5-dev

最后
  1. makelinux
  2. sudomakeinstall

可以看到,lua 的 include 和lib位于/usr/local下

2.2)继续安装
  1. ./configure--prefix=/path/to/tokyotyrant-- with -tc=/path/to/tokyocabinet--enable-lua
  2. make
  3. sudomakeinstall

3) 测试
3.1)演示非持久性
3.1.1)启动服务:
bin/ttserver

3.1.2)使用客户端
另起一个终端
存放: bin/tcrmgr put localhost one first
获取: bin/tcrmgr get localhost one
得到结果 first

3.2.3)测试持久
重启ttserver,再次获取bin/tcrmgr get localhost one
没有结果

3.2)演示持久性
3.2.1)启动服务
bin/ttserver /tmp/x.tch

3.2.2)使用客户端
另起一个终端
存放: bin/tcrmgr put localhost one first
获取: bin/tcrmgr get localhost one

3.2.3)测试持久
重启ttserver
再次获取:
bin/tcrmgr get localhost one

ok

你可能感兴趣的:(ant)