Jump to content
McKay Development

Whats the best way of running multiple accounts?


sNIP

Recommended Posts

Currently I have one main nodejs app, which spawns one nodejs process for each account. The communication is done by IPC protocol. So my question is:

Is it going to be better if I just create multiple steam user instances and place them in an array or in an object collection?

Link to comment
Share on other sites

It's very much not a bad idea to spawn one process per account. That way, if something causes one bot to crash, the rest don't also crash. Also, Node.js is single-threaded, so that's the best way to take advantage of multiple processor cores.

About the only downside of spawning multiple processes is the increased memory usage. But if you have enough RAM, go for it.

Link to comment
Share on other sites

This is the test that I made with 45 test IPC processes. The test consist of sending and expecting to receive message every 1 second. I have tested the execution of the time a message goes to the child process and then waiting for that message to come back to the parent process. The transaction time doesnt exceed 1 second.
It takes average ~80 mb per process.
So if I want to save ram, I need to run them in one process(multiple instances of steam user class).
My only concern about spawning multiple processes is that I dont know if I will hit an IPC bottleneck. What happens if a parent process have 500 child processes, which he needs to have constant connection to them? Iam not sure if it will be actually OS related. If that is the case, I need to spawn a process which spawns a process. 

image.thumb.png.12afecf9cd6a11a9a7bcd03899659915.png

Edited by sNIP
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...