E
E
Extramezz2017-02-03 14:42:47
css
Extramezz, 2017-02-03 14:42:47

Firefox timings, what is "Locked"?

32d68b35da664bd0b965676e4d82c2e3.png
I observe in the timings (firefox developer tools) this picture. What does "Blocked" mean? And what could be the reasons for this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nirvimel, 2017-02-03
@Extramezz

At the moment, the network is busy (the maximum number of simultaneously valid requests is being executed), the request is queued for execution.
The number of simultaneously allowed requests is affected by these settings in the configuration:

  • network.http.max-connections;
  • network.http.pipelining.maxrequests;
  • network.http.max-persistent-connections-per-proxy;
  • network.http.max-persistent-connections-per-server;
  • network.http.pipelining.max-optimistic-requests;

I
Ilya Gerasimov, 2017-09-06
@Omashu

I think we need a clean document here and it's easier to do it with a regular expression, something like this:

$html = request....body;

preg_match("/html5player\.setVideoTitle\('(?<value>\w+?)\'\)/", $html, $matches);

$matches['value']

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question