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 withrequests
2.23.0 - Processor: Intel(R) Core(TM) i5-6600K CPU @ 3.50GHz
Javascript Fetch
HTML that runs the Javascript below:
JavaScript
x
9
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script src="script.js"></script>
5
</head>
6
<body>
7
</body>
8
</html>
9
Javascript that makes multiple fetch
requests and reports the average time per request.
JavaScript
1
33
33
1
// record all times
2
const times = [];
3
4
function call() {
5
// record starting time
6
const startFetch = performance.now();
7
fetch("http://127.0.0.1:8000/timer/time")
8
.then((response) => {
9
// compute fetch duration
10
const elapsedFetch = performance.now() - startFetch;
11
12
// record result
13
console.log(elapsedFetch);
14
times.push(elapsedFetch);
15
16
if (times.length<100) {
17
// start next call
18
call();
19
} else {
20
// report statistics
21
const totalFetch = times.reduce((a, b) => a + b, 0);
22
const averageFetch = totalFetch/times.length;
23
const standardDeviation = Math.sqrt(times.reduce((a, b) => a + (b-averageFetch) ** 2, 0)/times.length);
24
const totalElapsed = performance.now() - startTime;
25
console.log("Average fetch time:", averageFetch, '+-', standardDeviation);
26
console.log("Percentage of overall elapsed:", totalFetch/totalElapsed)
27
}
28
});
29
}
30
31
var startTime = performance.now();
32
call();
33
Firefox console output when visiting the HTML page:
JavaScript
1
3
1
Average fetch time: 62.51 +- 31.450117646838777
2
Percentage of overall elapsed: 0.9993605115907274
3
Similar result for Google Chrome Version 80.0.3987.149 (Official Build) (64-bit)
JavaScript
1
3
1
Average fetch time: 49.93 +- 4.92596183501253
2
Percentage of overall elapsed: 0.9993995196156925
3
Using XMLHttpRequest instead of fetch
:
JavaScript
1
4
1
xhr.open("GET", "http://127.0.0.1:8000/timer/time");
2
xhr.send();
3
xhr.onload =
4
yields similar results:
JavaScript
1
3
1
Average fetch time: 60.19 +- 26.325157169521326
2
Percentage of overall elapsed: 0.9993358791300017
3
Python requests
Code analogous to Javascript, but in Python:
JavaScript
1
22
22
1
import requests
2
import time
3
import numpy as np
4
5
times = []
6
start_time = time.time()
7
8
for i in range(100):
9
start_get = time.time()
10
response = requests.get('http://127.0.0.1:8000/timer/time')
11
elapsed_get = time.time() - start_get
12
times += [elapsed_get]
13
14
total_elapsed = time.time() - start_time
15
16
total_get = np.sum(times)
17
average_get = np.average(times)
18
standard_deviation = np.std(times)
19
20
print("Average get time:", average_get, '+-', standard_deviation)
21
print("Percentage of overall elapsed:", total_get/total_elapsed)
22
Output:
JavaScript
1
3
1
Average get time: 0.0025661182403564453 +- 0.0001961814487345112
2
Percentage of overall elapsed: 0.9994576986364464
3
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.