Feature TOP Developer

Usage

This page describes how to build the CHMPX PHP driver and install it and use it.

1. Install

Debian based Linux users can install it by following the steps below:

$ sudo apt-get update -y

$ sudo apt-get install curl -y
$ curl -s https://packagecloud.io/install/repositories/antpickax/stable/script.deb.sh | sudo bash

$ sudo apt-get install -y php8.2 libapache2-mod-php8.2
$ sudo update-alternatives --set php-config /usr/bin/php-config8.2
$ sudo update-alternatives --set php /usr/bin/php8.2
$ sudo apt-get install -y chmpx php-pecl-chmpx

Fedora derived RPM based Linux(Fedora, CentOS, CentOS Stream, RHEL, etc.) users can install it by following the steps below:

$ sudo dnf update -y

$ curl -s https://packagecloud.io/install/repositories/antpickax/stable/script.rpm.sh | sudo bash

$ sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
$ sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
$ sudo dnf module reset php
$ sudo dnf module install php:remi-8.2
$ sudo dnf install -y php-pecl-chmpx

2. Test

Firstly clone the GitHub repository.

$ git clone https://github.com/yahoojapan/chmpx_phpext.git

Run a CHMPX server daemon process.

$ chmpx -conf ./chmpx_phpext/tests/server.yaml &

Run a CHMPX slave daemon process.

$ chmpx -conf ./chmpx_phpext/tests/slave.yaml &

Run a PHP server application.

$ php -r '
> $chmpx = new Chmpx(); 
> $chmpx->CreateServer("./chmpx_phpext/tests/server.yaml", true); 
> $svrobj = $chmpx->GetChmpxServer(); 
> $rcvdata = ""; 
> $svrobj->Receive($rcvdata, 60 * 1000, true); // wait for one minute.
> echo $rcvdata;
'

Run a PHP client application that connect with the CHMPX slave process to send messages to the PHP server application.

$ php -r '
> $chmpx = new Chmpx();
> $chmpx->CreateSlave("./chmpx_phpext/tests/slave.yaml", true); 
> $slaveobj = $chmpx->GetChmpxSlave();
> $slaveobj->Send("hello", true, false);
'

The above example will output something similar to:

hello
Feature TOP Developer