Швидкість і продуктивність — AISeen Docs
Як AISeen вимірює швидкість сайту: TTFB, розмір HTML, HTTP/2, стиснення gzip/brotli, Cache-Control та ETag.
What we check
< 800ms30 ptsTime from when the browser sends a request to when it receives the first byte of the response. High TTFB indicates slow server, no CDN, or expensive backend processing.
< 100KB15 ptsSize of the initial HTML document (uncompressed). Large HTML documents delay parsing and rendering, especially on mobile connections.
HTTP/2 or HTTP/315 ptsHTTP/2 enables multiplexing (parallel requests over one connection), header compression, and server push. HTTP/1.1 serializes requests, causing head-of-line blocking.
gzip or brotli enabled15 ptsText compression reduces transfer size by 60–80%. Brotli achieves better ratios than gzip at similar CPU cost. Uncompressed HTML/CSS/JS causes unnecessary bandwidth usage and slower loads.
Present on static assets10 ptsCache-Control tells browsers and CDNs how long to store responses. Without caching, every visit re-downloads all assets, increasing load time and server cost.
Present for revalidation5 ptsConditional request headers that enable 304 Not Modified responses, allowing cached resources to be revalidated without re-downloading the full content.
preconnect/preload used10 ptsResource hints in the <head> allow the browser to start DNS lookups, TCP connections, or asset downloads early. preconnect to your font or API CDN can save 150–300ms.
How scoring works
Each check has a point value. Pass/fail is determined by whether the metric meets the target threshold. TTFB is the most important signal and carries the highest weight.
Total possible: 100 points. Partial credit given for TTFB (warning threshold scores 50% of full points).
Score ranges
80 – 100
Fast
Excellent server performance. TTFB under 400ms, compression enabled, HTTP/2, proper caching. Users and crawlers get fast responses.
50 – 79
Acceptable
Adequate speed but room for improvement. Some optimization opportunities available — likely missing compression or caching.
0 – 49
Slow
High TTFB and/or missing compression and caching. Likely hurting search rankings and user retention significantly.
Quick wins for better speed scores
Put your site behind Cloudflare (free)
Cuts TTFB by 40–70%, adds HTTP/2, brotli, and caching automatically.
Deploy on Vercel or Netlify Edge
Both serve from edge nodes globally, reducing TTFB to <100ms for most users.
Add Cache-Control headers to static assets
Near-zero load time for returning visitors on cached resources.
Enable brotli at the CDN or server level
Reduces HTML/CSS/JS transfer size by 60–80% with minimal CPU cost.
Add preconnect for external domains
Saves 150–300ms on DNS + TCP + TLS for third-party resources.
Швидкість і продуктивність — AISeen Docs
Як AISeen вимірює швидкість сайту: TTFB, розмір HTML, HTTP/2, стиснення gzip/brotli, Cache-Control та ETag.