You are free to run a cache proxy and bring more accurate results.
But because most are too lazy to do this extra work, then this values are better than nothing to see if amiga browsers work good in compare to firefox, to see if it is usefull to have firefox too
also you can post values when you do a site back to show how long time need to show full page but in cache.
its also intresting to see how the speed is when MOS OWB use no threads.if it is possible to disable by define.
as far i know OS4 OWB use no threads and 68k too not.
Maybe it help users to choose the better OWB.
I think using thread is important, to get same speed as firefox
but if not really know if it have noticable speedup with threa
Actually, the way it's currently done, threads don't speed up the process, since all the connections run in a single (and separated from main context) thread.
But like i already said previously, all CURL handles are handled asynchronously (non blocking sockets, process stuff when data arrives,...). The problem is some parts of the process are still a bit long (data reception) or very long (DNS resolution which is a major blocking call, unless c-ares or an additional lookup thread is spawned).
So, even tho CURL is mostly asynchronous, it still makes sense to run it in a dedicated thread to avoid blocking the gui during DNS lookups or long data reception phase.