如何将Gearman与redis一起用于持久队列?
我正试图为centos7运行它。我让Gearman工作。论跑步
gearmand -h我可以看到对libsqlite3、Postgres、libtokyocabinet和MySQL的支持。
我已经按照不同的论坛使用yum安装了hiredis,尽管我不知道如何通过终端运行它。我下载了gearman的tar文件,并试图在gearman文件夹中运行这个命令,但没有结果。
./configure --enable-FEATURE sql发布于 2017-04-04 09:03:42
要使用hiredis持久性队列构建gearmand,您必须在CentOS上安装CentOS或在Debian/Ubuntu包上安装libhiredis-dev。
确保./configure --enable-hiredis输出包含
checking hiredis/hiredis.h usability... yes
checking hiredis/hiredis.h presence... yes
checking for hiredis/hiredis.h... yes
checking for main in -lhiredis... yes若要以redis作为队列类型运行gearmand,请运行:gearmand --verbose DEBUG --queue-type redis
https://stackoverflow.com/questions/42714022
复制相似问题