Upgrade to Pro — share decks privately, control downloads, hide ads and more …

mastodonのnodeのはなし

Sponsored · Your Podcast. Everywhere. Effortlessly. Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
Avatar for geta6 geta6
April 26, 2017
3.2k

 mastodonのnodeのはなし

Avatar for geta6

geta6

April 26, 2017
Tweet

Transcript

  1. const cluster = require('cluster'); const os = require('os'); if (cluster.isMaster)

    { const core = Math.max(os.cpus().length - 1, 1); for (let i = 0; i < core; i++) cluster.fork(); } else { // your code here }