Giter Club home page Giter Club logo

Comments (6)

walkor avatar walkor commented on June 12, 2024

Please post your start_gateway.php content.

from gatewayworker.

abhinavgmfs avatar abhinavgmfs commented on June 12, 2024
<?php 
use Workerman\Worker;
use GatewayWorker\Gateway;
use Workerman\Autoloader;

// gateway 进程
$gateway = new Gateway("websocket://" . SOCKET_SERVER_IP . ":" . SOCKET_PORT);

$gateway->name = GATEWAY_NAME;

$gateway->count = 1;

$gateway->lanIp = SOCKET_LAN_IP;

$gateway->startPort = SOCKET_START_PORT;

$gateway->registerAddress = SOCKET_REGISTER_ADDRESS;

if(!defined('GLOBAL_START'))
{
    Worker::runAll();
}


from gatewayworker.

walkor avatar walkor commented on June 12, 2024

Create start_gateway2.php which like this.

<?php 
use Workerman\Worker;
use GatewayWorker\Gateway;
use Workerman\Autoloader;

//  == here === 
$gateway = new Gateway("websocket://" . SOCKET_SERVER_IP . ":" . SOCKET_PORT + 1);

$gateway->name = GATEWAY_NAME;

$gateway->count = 1;

$gateway->lanIp = SOCKET_LAN_IP;

// === here ===
$gateway->startPort = SOCKET_START_PORT + 200;

$gateway->registerAddress = SOCKET_REGISTER_ADDRESS;

if(!defined('GLOBAL_START'))
{
    Worker::runAll();
}

Restart

from gatewayworker.

abhinavgmfs avatar abhinavgmfs commented on June 12, 2024

Thank you!

How can we send message from gateway 2 to client connected in gateway 1

Example:
If clientId = 1 is connected to Gateway1
and clientId = 2 is connected to Gateway2

then how can we send message to clinetid = 1 from client connected in gateway2

Gateway::sendToClient($clientId, $message, $raw);

from gatewayworker.

walkor avatar walkor commented on June 12, 2024

Just call Gateway::sendToClient($clientId1,$message, $raw);

from gatewayworker.

abhinavgmfs avatar abhinavgmfs commented on June 12, 2024

Thank you!

But all the business logic loads still on one process of business worker and we are bound to use only one business worker process due to internal design of the project that stores arrays inside the business logic.

Any idea how we can handle this?

Thank you

from gatewayworker.

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.