Sök…


Event Loop

Exempel på blockering av operation

let loop = (i, max) => {
  while (i < max) i++
  return i
}

// This operation will block Node.js
// Because, it's CPU-bound
// You should be careful about this kind of code
loop(0, 1e+12)

IO-blockeringsexempel för IO-blockering

let i = 0

const step = max => {
  while (i < max) i++
  console.log('i = %d', i)
}

const tick = max => process.nextTick(step, max)

// this will postpone tick run step's while-loop to event loop cycles
// any other IO-bound operation (like filesystem reading) can take place
// in parallel
tick(1e+6)
tick(1e+7)
console.log('this will output before all of tick operations. i = %d', i)
console.log('because tick operations will be postponed')
tick(1e+8)

händelse loop diagram

I enklare termer är Event Loop en enkeltrådad kömekanism som kör din CPU-bundna kod tills dess exekvering och IO-bundna kod på ett icke-blockerande sätt.

Node.js under mattan använder dock flera trådar för vissa av sina operationer genom libuv Library.

Resultathänsyn

  • Åtgärder som inte blockerar blockerar inte kön och påverkar inte slingans prestanda.
  • CPU-bundna operationer kommer dock att blockera kön, så du bör vara försiktig så att du inte gör CPU-bundna operationer i din Node.js-kod.

Node.js blockerar inte IO eftersom den laddar ner arbetet till operativsystemkärnan, och när IO-operationen levererar data ( som en händelse ) kommer den att meddela din kod med dina medföljande återuppringningar.

Öka maxSockets

Grunderna

require('http').globalAgent.maxSockets = 25

// You can change 25 to Infinity or to a different value by experimenting

Node.js använder som standard maxSockets = Infinity samtidigt (sedan v0.12.0 ). Fram till Node v0.12.0 var standard maxSockets = 5 (se v0.11.0 ). Så efter mer än fem förfrågningar kommer de att stå i kö. Öka detta antal om du vill ha samtidighet.

Ställer in din egen agent

http API använder en " Global Agent " . Du kan leverera din egen agent. Så här:

const http = require('http')
const myGloriousAgent = new http.Agent({ keepAlive: true })
myGloriousAgent.maxSockets = Infinity

http.request({ ..., agent: myGloriousAgent }, ...)

Stänga av Socket Pooling helt

const http = require('http')
const options = {.....}

options.agent = false

const request = http.request(options)

Fallgropar gropar~~POS=HEADCOMP

  • Du bör göra samma sak för https API om du vill ha samma effekter

  • Se upp att till exempel AWS kommer att använda 50 istället för Infinity .

Aktivera gzip

const http = require('http')
const fs   = require('fs')
const zlib = require('zlib')

http.createServer((request, response) => {
  const stream          = fs.createReadStream('index.html')
  const acceptsEncoding = request.headers['accept-encoding']

  let encoder = {
    hasEncoder     : false,
    contentEncoding: {},
    createEncoder  : () => throw 'There is no encoder'
  }

  if (!acceptsEncoding) {
    acceptsEncoding = ''
  }

  if (acceptsEncoding.match(/\bdeflate\b/)) {
    encoder = {
      hasEncoder     : true,
      contentEncoding: { 'content-encoding': 'deflate' },
      createEncoder  : zlib.createDeflate
    }
  } else if (acceptsEncoding.match(/\bgzip\b/)) {
    encoder = {
      hasEncoder     : true,
      contentEncoding: { 'content-encoding': 'gzip' },
      createEncoder  : zlib.createGzip
    }
  }

  response.writeHead(200, encoder.contentEncoding)

  if (encoder.hasEncoder) {
    stream = stream.pipe(encoder.createEncoder())
  }

  stream.pipe(response)

}).listen(1337)


Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow