Earlier quoted context omitted.
For free? GAE doesn't charge for their object store nor their CDN service?
There is a free tier. It looks like it's free up to 1GB per day [1]. On my home account I've only used it for demo projects that are scarcely used, but it's fine for that. [1] https://cloud.google.com/appengine/docs/quotas
I am a fast webpage
101–110 of 292 posts
Re: I am a fast webpage
#102Wont that make your webpage load slower?
Re: I am a fast webpage
#103https://tools.pingdom.com/#!/ehdlhb/https://varvy.com/pagesp...
Re: I am a fast webpage
#104Re: I am a fast webpage
#105Re: I am a fast webpage
#106Re: I am a fast webpage
#107Is this image inlining thing something new? Am I reading it correctly that the images are encoded in base64 and delivered as html? Surely this is a bad idea... no?
base64 encoding increases the size of the file. For that image I would prefer to use inline SVG...
Re: I am a fast webpage
#108Re: I am a fast webpage
#109 # Both DNS records are cached before request
>>> print requests.get('https://varvy.com/pagespeed/wicked-fast.html').elapsed.microseconds
226515
>>> print requests.get('http://www.google.com').elapsed.microseconds
92027
Even google.com (92 ms) is about 250% faster than OP (226 ms) to establish connection, read all of the data, and close.Re: I am a fast webpage
#110> "I am not on a shared host, I am hosted on a VPS" Hate to break it to you, but your virtual private server (VPS) is likely sharing a bare-metal server with other VPS. ;-) Also, you can look into content delivery networks (aka CDN), which will most likely deliver this page faster to clients than your VPS especially when you consider your VPS is in Dallas and CDN's have nodes located around the world.