Code Monkey home page Code Monkey logo

Comments (2)

walkor avatar walkor commented on July 2, 2024 1

Here are the codes to generate clientId in Lib/Context.php.

$client_id = bin2hex(pack('NnN', $local_ip, $local_port, $connection_id));

$locol_ip is $gateway->localIp(defined in start_gateway.php) witch is unique in your server clusters.

$local_port is internal communication port(related $gateway->startPort in start_gateway.php) witch is unique for every gateway process in one server.

$connection_id is the real socket id in gateway process witch is self-increasing when connection coming and is unique in one gateway process.
The max value for $connection_id is 4294967295 (unsigned int), and connection_id will be set to 1 again when it reached the max value, this will not be happen in several tens of years.

So, clientId is unique in multiple server ( Distributed Deployment )

When a clientId is used the clientId will not be used again for a long time(several tens of years or even longer) in runtime.

from gatewayworker.

sm2017 avatar sm2017 commented on July 2, 2024

Ok , Thanks

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.