pika搭建

ubuntu 安装 GCC 和 G++ C++ 开发环境

sudo apt-get install build-essential

2.查看 gcc 版本 然后安装 统一版本的 g++ gcc --version 3 安装 g++ sudo apt-get install g++-4.4 4查看安装版本 g++ --version

ubuntu 16.04 编译caffe出错:glog/logging.h: No such file or directory

sudo apt-get install libgoogle-glog-dev

git clone --recursive https://github.com/Qihoo360/pika

cd pika

make __REL=1

./output/bin/pika -c ./conf/pika.conf

若启动失败,把./output/lib/的内容拷贝到Makefile定义的rpath目录下,然后重新启动

$ cp output/lib/* RPATH

测试

sudo apt install redis-tools

redis-benchmark -p 9221 

https://www.w3cschool.cn/pika/pika-5xvb2dir.html

CentOS7-360开源的pika存储系统安装

https://kuaibao.qq.com/s/20190130A1C19700?refer=spider

Redis,Mc压测工具 简述 vire-benchmark

https://deep011.github.io/vire-benchmark

git clone https://github.com/vipshop/vire.git

cd vire

autoreconf -fvi

./configure

make

./tests/vire-benchmark -h

./vire-benchmark -h 172.31.60.70 -p 9221 -n 100000 -c 20

configure.ac:17:error: possibly undefined macro: AC_PROG_LIBTOOL

安装libtool工具

yum install libtool -y

apt-get install libtool

原文地址:https://www.cnblogs.com/funykatebird/p/14431995.html