Die drei Core Web Vitals
| Metrik | Misst | Gut | Verbesserungsbedarf |
|---|---|---|---|
| LCP | Ladezeit (Largest Contentful Paint) | ≤ 2,5s | > 4,0s |
| INP | Reaktionsfähigkeit (Interaction to Next Paint) | ≤ 200ms | > 500ms |
| CLS | Layout-Stabilität (Cumulative Layout Shift) | ≤ 0,1 | > 0,25 |
OCC Performance-Optimierung
OCC ist als statische Astro-Site von Grund auf schnell:
| Optimierung | Wirkung |
|---|---|
| Statisches HTML (kein SSR) | TTFB < 150ms |
| CSS inline (keine externen Stylesheets) | Kein Render-Blocking |
| React Islands (client:visible) | Lazy-loading |
| Caddy mit gzip | 60-70% kleinere Übertragung |
| _assets/ immutable cache | Wiederholte Besuche instant |
| Keine externen Fonts | Kein FOUT (Flash of Unstyled Text) |
| Keine Tracking-Scripts | 0 zusätzliche Requests |
GEO-Relevanz
Schnelle Sites haben Vorteile:
- Google bewertet CWV als Ranking-Faktor
- AI-Crawler bevorzugen schnelle, stabile Seiten
- Niedrige TTFB → schnelleres Crawling möglich
- Keine Layout-Shifts → Inhalte zuverlässig parsebar
Messung
# Lighthouse CLI
npx lighthouse https://opencognitioncommons.org --only-categories=performance
# PageSpeed Insights API
curl "https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=https://opencognitioncommons.org" 引用
"Core Web Vitals." Open Cognition Commons Foundation. https://opencognitioncommons.org/zh/glossary/core-web-vitals. CC-BY 4.0. 机器可读元数据
{
"@context": "https://schema.org",
"@type": "DefinedTerm",
"name": "Core Web Vitals",
"description": "Core Web Vitals sind drei von Google definierte Metriken zur Messung der Nutzererfahrung auf Webseiten: LCP (Largest Contentful Paint), INP (Interaction to Next Paint) und CLS (Cumulative Layout Shift).\n",
"url": "https://opencognitioncommons.org/zh/glossary/core-web-vitals",
"license": "https://creativecommons.org/licenses/by/4.0/",
"alternateName": [
"Core Web Vitals",
"CWV",
"Web Vitals"
]
}