Gearman安装及使用
基础安装包
- yum install vim wget gcc gcc-c++ make dos2unix gperf libevent libevent-devel zlib-devel bzip2-devel openssl-devel ncurses-devel boost boost-devel mysql-devel
安装gearman 异步队列
- # wget https://launchpad.net/gearmand/1.2/1.1.9/+download/gearmand-1.1.9.tar.gz
- # tar -zxvf gearmand-1.1.9.tar.gz
- # cd gearmand-1.1.9
- # ./configure 如果出现错误请查看下面的错误解决
成功后如下
- * LIBS:
- * LDFLAGS Flags:
- * Assertions enabled: no
- * Debug enabled: no
- * Warnings as failure: no
- * Building with libsqlite3 no
- * Building with libdrizzle no
- * Building with libmemcached not found
- * Building with libpq no
- * Building with tokyocabinet no
- * Building with libmysql yes
- * SSL enabled: no
- * make -j: 3
- * VCS checkout: no
- # make
- # make install
安装gearman php 扩展
- # wget http://pecl.php.net/get/gearman
- # mv gearman gearman.tar.gz
- # tar -zxvf gearman.tar.gz
- # cd gearman-1.1.2/
- # phpize
- # ./configure
- # make
- # make install
- # cd /etc/php.d/
- # cp gd.ini gearman.ini
- # vim gearman.ini
- ; Enable gearman extension module
- extension=gearman.so
- # service php-fpm restart
错误解决
在configure过程中出现了以下错误:
- checking for Boost headers version >= 1.39.0… no
- configure: error: cannot find Boost headers version >= 1.39.0
解决办法:
- # yum search boost
- # yum install boost.x86_64
- # yum install boost-devel.x86_64
继续执行./configure出现以下错误
- checking for gperf... no
- configure: error: could not find gperf
解决办法:
- #yum search gperf
- #yum install gperf.x86_64
继续执行./configure出现以下错误
- checking test for a working libevent... no
- configure: error: Unable to find libevent
解决办法:
- # yum install libevent libevent-devel
gearman 参数说明
- Client mode: gearman [options] [<data>]
- Worker mode: gearman -w [options] [<command> [<args> ...]]
- Common options to both client and worker modes.
- -f <function> - Function name to use for jobs (can give many)
- -h <host> - Job server host
- -H - Print this help menu
- -v - Print diagnostic information to stdout(false)
- -p <port> - Job server port
- -t <timeout> - Timeout in milliseconds
- -i <pidfile> - Create a pidfile for the process
- Client options:
- -b - Run jobs in the background(false)
- -I - Run jobs as high priority
- -L - Run jobs as low priority
- -n - Run one job per line(false)
- -N - Same as -n, but strip off the newline(false)
- -P - Prefix all output lines with functions names
- -s - Send job without reading from standard input
- -u <unique> - Unique key to use for job
- Worker options:
- -c <count> - Number of jobs for worker to run before exiting
- -n - Send data packet for each line(false)
- -N - Same as -n, but strip off the newline(false)
- -w - Run in worker mode(false)
gearman异步队列使用:
下面先做个命令行测试:
首先开两个命令行窗口:
tty1:
- # gearman -w -f abc -- wc -m
表示统计用户输入了多少个字符。
tty2:
- # gearman -f abc 'aaaa'
4
输出结果正确。
# gearman -f abc < /etc/php.ini
当然也可以直接从文件中读入内容。
Gearman安装及使用的更多相关文章
- gearman安装及初次使用
官网: http://gearman.org/ 一篇文章: 利用Gearman实现异步任务处理 一.问题分析 问题:在性能测试过程中,发现用户管理平台在进行图片上传时,性能不佳. 分析:经过代码分析 ...
- CentOS的Gearman安装
背景:用PHP做一些简单的上传是没有任何的问题,但是要做断点上传好像也是没有大问题,但要是并发的切片加断点上传可能就会有问题了哟.第一个问题是合并问题:如果一上传就合并,PHP老半天不返回是一个方面( ...
- gearman安装实录
花了5个小时装好了gearman,问题不断,坑爹的服务器yum还坏了,悲催. 服务器系统:centos5.3 64位 gearman版本:1.1.8 安装包(相关依赖)下载 1.gearman安装包 ...
- gearman 安装
yum install gperfyum install libevent-develyum install libuuid-develwget https://launchpad.net/gearm ...
- Gearman 安装使用教程
Gearman是一个分发任务的程序框架,可以用在各种场合,Gearman更偏向于任务分发功能.它的任务分布非常简单,简单得可以只需要用脚本即可完成. Gearman 分布式任务实现原理上只用到2个字段 ...
- gearman安装问题总结
解决configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. yum ...
- Centos7安装gearman和php扩展
Centos7安装gearman和php扩展 标签(空格分隔): php,linux gearman所需要的依赖 yum install \ vim \ git \ gcc \ gcc-c++ \ w ...
- gearman mysql udf
gearman安装 apt-get install gearman gearman-server libgearman-dev 配置bindip /etc/defalut/gearman-job-se ...
- Gearman + Nodejs + MySQL UDF异步实现 MySQL 到 Redis 的数据同步
[TOC] 1, 环境 CentOS, MySQL, Redis, Nodejs 2, Redis简介 Redis是一个开源的K-V内存数据库,它的key可以是string/set/hash/list ...
随机推荐
- enjoy dollar vs cash dollar
當 enJoy 卡 客 戶 憑 enJoy 卡 於 enJoy 卡 「 特 約 商 戶 」 簽 賬 消 費 , 累 積 之 enJoy Dollars 及 Cash Dollars 可 在 同 一 交 ...
- yii2 数据库查询
下面介绍一下 Yii2.0 对数据库 查询的一些简单的操作 User::find()->all(); 此方法返回所有数据: User::findOne($id); 此方法返回 主键 id=1 的 ...
- POJ3254Corn Fields——状态压缩dp
题目:http://poj.org/problem?id=3254 1.枚举行: 2.把有影响的“放不放牛”加入参数中,用二进制数表示该位置放不放牛,再用十进制数表示二进制数: 3.优美的预处理lis ...
- 更改默认打开wifi功能
一.打开以下目录 /home/tingpan/openwrt/barrier_breaker/package/kernel/mac80211/files/lib/wifi 找到mac80211.sh ...
- Redis在Windows集群中的错误
创建集群: ./redis-trib.rb create --replicas 1 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:70 ...
- HttpURLConnection与HttpClient浅析---转
HttpURLConnection与HttpClient浅析 1. GET请求与POST请求 HTTP协议是现在Internet上使用得最多.最重要的协议了,越来越多的Java应用程序需要直接通过HT ...
- 过度使用DBLINK做系统集成会带来的问题
过度使用DBLINK做系统集成会带来很多问题,问题主要由以下几点: 1. 大量消耗数据库资源: 本地系统每通过DBLINK链接远端系统一次,都会生成一个本地session,如本地session不退出或 ...
- js轮播插件
// Tween算法 var Tween = { // t:当前步数 // b:初始位置 // c:总距离 // d:总步数 // Linear:匀速 Linear: function(t,b,c,d ...
- gearman在虚拟机上运行没有自动开启的处理
几天来被gearman无响应的问题困扰,后来请教了大神解决.原因是gearman在虚拟机上运行不稳定,无法自动开启,需手动开始,输入图片的两行命令即开始.
- unity3d动态加载dll的API以及限制
Unity3D的坑系列:动态加载dll 一.使用限制 现在参与的项目是做MMO手游,目标平台是Android和iOS,iOS平台不能动态加载dll(什么原因找乔布斯去),可以直接忽略,而在Androi ...