Multiple Clients on one file/instance
I was wondering if its possible to run multiple clients on one file (i.e. .forEach()-ing
new Client()
)?
I tried a basic implementation and the commands we're spammed after running one once (see screenshot)Solution:Jump to solution
Absolutely not, Sapphire interacts with
container
which exists as a singleton (only one instance).
I don't know why you want to do this, but worker threads or forks are your only way....2 Replies