How can i install gearman php extension on Windows OS?

回眸只為那壹抹淺笑 提交于 2019-11-28 01:26:44
RafaSashi

to install Gearman with PHP Extension in CentOS or Debian see How to install Gearman with PHP Extension

Installing and Updating Cygwin Package

from: https://cygwin.com/install.html

Install the Latest GCC and make via Cygwin

Install wget via Cygwin

Install libevent

   wget https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz
    tar -zxvf libevent-2.0.22-stable.tar.gz
    cd libevent-2.0.22-stable
    ./configure
    make
    make install

install gearmand and libgearman

wget https://github.com/gearman/gearmand/archive/1.1.12.tar.gz
tar -zxvf gearmand-1.1.12.tar.gz
cd gearmand-1.1.12
./configure
make
make install

install pecl-gearman

pecl install gearman

Resources

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!