Skip to content
Advertisement

Javascript Fetch is Slow (60ms vs 3ms)

Running Javascript fetch takes about 60ms per call on my machine. Compared to Python requests at 3ms, this is much slower.

Questions

  • Why is fetch so much slower?
  • Is there any way to speed it up? I am OK with answers that require me to reconfigure my browser.

Experiment

These are the details of my experiment.

System

  • Browser: Firefox 74.0 (64-bit)
  • Operating System: Ubuntu 18.04.4 LTS
  • Server: Django 3.0.3 (but since requests is much faster, this should not matter). Server and client are on the same machine.
  • For requests: Python 3.7.6 with requests 2.23.0
  • Processor: Intel(R) Core(TM) i5-6600K CPU @ 3.50GHz

Javascript Fetch

HTML that runs the Javascript below:

JavaScript

Javascript that makes multiple fetch requests and reports the average time per request.

JavaScript

Firefox console output when visiting the HTML page:

JavaScript

Similar result for Google Chrome Version 80.0.3987.149 (Official Build) (64-bit)

JavaScript

Using XMLHttpRequest instead of fetch:

JavaScript

yields similar results:

JavaScript

Python requests

Code analogous to Javascript, but in Python:

JavaScript

Output:

JavaScript

Advertisement

Answer

While I still don’t really know why Javascript fetch is so slow, I have been able to switch to a faster option:

I now use WebSockets (on the client) and Django Channels (on the server), which are significantly faster.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement