Posts by rafael • 36 points
2 posts
-
1
votes1
answer55
viewsA: What technique does this site use to consume all the processing power of the machine?
Javascript, by default, is single thread: it can run only one program on a CPU (core). I believe that it would be necessary to use Web Workers:…
-
1
votes1
answer302
viewsA: Need to install Composer on the server?
Technically? No. Composer generates a file that is in the 'vendor/autoload.php' directory. But it is recommended to install Composer on the server to run commands, updates, any package…