Hi, On Fri, Jul 07, 2017 at 06:22:43PM +0200, Johannes Hofmann wrote:
Hm, for me both sites seem to load reasonably fast here, but I just tested it once right now. You could try something like this (with show_msg=YES):
dillo http://craigslist.org/ | gawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }'
Maybe that gives a hint what is taking up time.
That example has plenty of redirections and DNS queries. This is, the delay depends on network latency and DNS server response time (which is often measured in seconds for some popular providers). Just count the number of connections and DNS queries! jcid at devuan:~$ dillo http://craigslist.org/ Nav_open_url: new url='http://craigslist.org/' Dns_server [0]: craigslist.org is 208.82.237.129 Connecting to 208.82.237.129:80 Nav_open_url: new url='http://www.craigslist.org/' Dns_server [0]: www.craigslist.org is 208.82.237.225 Connecting to 208.82.237.225:80 Nav_open_url: new url='https://www.craigslist.org/' Connecting to 208.82.237.225:443 Nav_open_url: new url='https://geo.craigslist.org/' Dns_server [0]: geo.craigslist.org is 208.82.237.225 Connecting to 208.82.237.225:443 Nav_open_url: new url='https://santiago.craigslist.org/' Dns_server [0]: santiago.craigslist.org is 208.82.237.146 Connecting to 208.82.237.146:443 HTH. -- Cheers Jorge.-