Chrome 3.x finishes first before Firefox 3.x and ye olde IE 6.x is almost unusably slow for substructure searching with JavaScript.
The possible job sizes are:
Browser | max. job size |
Chrome 3.x | 100 |
Firefox 3.x | 25 |
IE 6.x | 5 |
Thus, the server sizes jobs according to the user-agent header sent:
if (uatype.find('Firefox/3') != -1): timeout = 500 maxsize = 25 elif (uatype.find('Chrome/3') != -1): timeout = 200 maxsize = 100 elif (uatype.find('MSIE') != -1): maxsize = 5 timeout = 1000 else: return
While I knew that Chrome's JavaScript engine is fast, I didn't expect it to be that dominant.
That's a big difference. Which version of Firefox? If 3.5, have you tried 3.6?
ReplyDeleteFirefox 3.5.7 and Chrome 3.x. I have 3.7 and 4.x now installed and will post the results ASAP.
ReplyDelete