Pub/Sub Redis for php
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Before you go make sure you already install Redis.
Install with composer
composer require riorizkyrainey/pubsub-redis-php
$client = new Predis\Client([
'scheme' => 'tcp',
'host' => 'redis',
'port' => 6379,
'database' => 0,
'read_write_timeout' => 0,
]);
$redisSubscribeAdapter = new \RioRizkyRainey\PubsubRedis\RedisSubscribeAdapter();
$redisSubscribeAdapter->setClient($client)
->setChannel('channel')
->subscribe(function ($message) {
printf($message . PHP_EOL);
});
$client = new Predis\Client([
'scheme' => 'tcp',
'host' => 'redis',
'port' => 6379,
'database' => 0,
'read_write_timeout' => 0,
]);
$redisPublishAdapter = new \RioRizkyRainey\PubsubRedis\RedisPublishAdapter();
$redisPublishAdapter->setClient($client)
->setChannel('channel');
$redisPublishAdapter->publishMessage('Hi, How do you do?');
$redisPublishAdapter->publishBulkMessage(['Nice to meet you', 'Where are you going?']);
$redisPublishAdapter->publishMessage('I don\'t feel good mr stark');
- Predis - Flexible and feature-complete Redis client for PHP and HHVM
- PHPUnit - The PHP Unit Testing framework.
- Mockery - Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Rio Rizky Rainey - Initial work - (https://github.com/RioRizkyRainey)
This project is licensed under the MIT License - see the LICENSE.md file for details
- Inspired from Superbalist