Giter Site home page Giter Site logo

Comments (4)

walkor avatar walkor commented on June 18, 2024

This feature is not supported now.

from phpsocket.io.

LoSunny avatar LoSunny commented on June 18, 2024

Sorry, I'm new to PHP and I'm not sure about what do you mean by "this feature". My goal is using the redis pub/sub feature, I can listen/send notification in my browser with the help of socket.io, and using PHP as my backend. If that is the case, what should I do or start my research?

EDIT
If I want to use this feature, what version should I downgrade to?

from phpsocket.io.

walkor avatar walkor commented on June 18, 2024

If you want to use redis try https://github.com/walkor/redis.

Run command composer require workerman/redis to install it.

The codes like this .

require __DIR__ . '/vendor/autoload.php';
use Workerman\Worker;
use Workerman\Autoloader;
use PHPSocketIO\SocketIO;
use Clue\React\Redis\Factory;
use Clue\React\Redis\Client;
$io = new SocketIO(8080);
$io->on('connection', function ($socket) {
    
});
$io->on('workerStart', function () {
    global $redis;
    $redis = new Client('redis://127.0.0.1:6379');
    $redis->subscribe(['news', 'blog'], function ($channel, $message) {
        echo "$channel, $message"; // news, news content
    });
});
Worker::runAll();

from phpsocket.io.

LoSunny avatar LoSunny commented on June 18, 2024

Thank you, it works WHEN unused dependency are removed. 😆

from phpsocket.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.