What values available in node.js combined create a unique ID for each process on each server in node.js? Right now, I only know how to obtain the process id.
|
|
node.js is a single-threaded server. It will only use one CPU core (spawned processes can use other cores) and If you want a single node server to take advantage of multi-core CPU, you must run node.js in cluster. Use It forks main thread into a number of worker threads, which communicate with each other using IPC (Inter-Process Communication). Each worker utilizes a CPU core. To get id for each worker you can use Edit: Adding from comment The answer depends on the size / range of possible values. On a LAN hostname, IP and pid may be enough. Also each server can have multiple NIC and IP it can listen to. Check this using |
|||||||
|
|
Not sure what your requirements are but you could do a hash of (hostname + pid + timestamp):
|
||||
|
|