中文
文档对象模型
文档对象模型(DOM)是一种与平台和语言无关的编程接口,它将 HTML 或 XML 文档表示为对象树,使脚本能够读取和修改其结构、内容和样式。
JavaScript 通过操作 DOM 来更新页面内容,而无需完全重新加载。
- https://zh.wikipedia.org/wiki/文档对象模型
- https://developer.mozilla.org/zh-CN/docs/Web/API/Document_Object_Model
English
DOM
The Document Object Model (DOM) is a platform- and language-independent programming interface that represents an HTML or XML document as a tree of objects, allowing scripts to read and modify its structure, content and styling.
JavaScript manipulates the DOM to update page content without a full reload.
- https://dom.spec.whatwg.org/
- https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
Deutsch
DOM
Das Document Object Model (DOM) ist eine plattform- und sprachunabhängige Programmierschnittstelle, die ein HTML- oder XML-Dokument als Objektbaum abbildet und so das Lesen und Verändern von Struktur, Inhalt und Darstellung per Skript ermöglicht.
JavaScript verändert das DOM, um Seiteninhalte ohne vollständiges Neuladen zu aktualisieren.
- https://de.wikipedia.org/wiki/Document_Object_Model
- https://developer.mozilla.org/de/docs/Web/API/Document_Object_Model
Français
DOM
Le Document Object Model (DOM) est une interface de programmation indépendante de la plateforme et du langage qui représente un document HTML ou XML sous forme d'arbre d'objets, permettant aux scripts de lire et de modifier sa structure, son contenu et son style.
JavaScript manipule le DOM pour mettre à jour le contenu de la page sans rechargement complet.
- https://fr.wikipedia.org/wiki/Document_Object_Model
- https://developer.mozilla.org/fr/docs/Web/API/Document_Object_Model
Italiano
DOM
Il Document Object Model (DOM) è un'interfaccia di programmazione indipendente da piattaforma e linguaggio che rappresenta un documento HTML o XML come albero di oggetti, consentendo agli script di leggerne e modificarne struttura, contenuto e stile.
JavaScript manipola il DOM per aggiornare il contenuto della pagina senza un ricaricamento completo.
- https://it.wikipedia.org/wiki/Document_Object_Model
- https://developer.mozilla.org/it/docs/Web/API/Document_Object_Model
中文
文档排序
信息检索中根据文档与查询的估计相关性对检索到的文档集合进行排序的过程。排序函数为每个文档分配分数,从而决定其在结果列表中的位置。
搜索引擎通过引入神经重排序模型改进了文档排序效果。
- https://zh.wikipedia.org/wiki/%E4%BF%A1%E6%81%AF%E6%A3%80%E7%B4%A2
English
document ranking
The process in information retrieval of ordering a set of retrieved documents by their estimated relevance to a query. Ranking functions assign scores that determine the position of each document in the result list.
The search engine improved its document ranking by incorporating a neural re-ranking model.
- https://en.wikipedia.org/wiki/Ranking_(information_retrieval)
- https://nlp.stanford.edu/IR-book/html/htmledition/scoring-term-weighting-and-the-vector-space-model-1.html
Deutsch
Dokument-Ranking
Verfahren im Information Retrieval, bei dem eine Menge abgerufener Dokumente nach ihrer geschätzten Relevanz zu einer Suchanfrage sortiert wird. Ranking-Funktionen vergeben Scores, die die Position jedes Dokuments in der Ergebnisliste bestimmen.
Die Suchmaschine verbesserte ihr Dokument-Ranking durch ein neuronales Re-Ranking-Modell.
- https://de.wikipedia.org/wiki/Information_Retrieval
Français
classement de documents
Processus en recherche d'information consistant à ordonner un ensemble de documents récupérés selon leur pertinence estimée par rapport à une requête. Les fonctions de classement attribuent des scores qui déterminent la position de chaque document dans la liste de résultats.
Le moteur de recherche a amélioré son classement de documents grâce à un modèle neuronal de re-classement.
- https://fr.wikipedia.org/wiki/Recherche_d%27information
Italiano
ranking dei documenti
Processo nel recupero delle informazioni che ordina un insieme di documenti recuperati in base alla loro rilevanza stimata rispetto a una query. Le funzioni di ranking assegnano punteggi che determinano la posizione di ciascun documento nella lista dei risultati.
Il motore di ricerca ha migliorato il ranking dei documenti integrando un modello neurale di re-ranking.
- https://it.wikipedia.org/wiki/Recupero_dell%27informazione
中文
文章
在 HTML 中,<article> 元素表示一段独立完整、可单独分发的内容,例如博客文章、新闻报道或论坛帖子。在更广泛的网络与 SEO 语境中,文章指结构化的编辑内容页面。
将每篇博客文章包裹在 <article> 元素中,有助于搜索引擎识别页面上独立的内容单元。
- https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/article
English
article
In HTML, the <article> element represents a self-contained, independently distributable piece of content, such as a blog post, news story, or forum entry. In a broader web and SEO context, an article is a structured editorial content page.
Wrapping each blog post in an <article> element helps search engines identify distinct content units on the page.
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
- https://html.spec.whatwg.org/multipage/sections.html#the-article-element
Deutsch
Artikel
In HTML repräsentiert das Element <article> einen in sich abgeschlossenen, eigenständig verteilbaren Inhalt wie einen Blogbeitrag, eine Nachricht oder einen Forenbeitrag. Im weiteren Web- und SEO-Kontext bezeichnet Artikel eine strukturierte redaktionelle Inhaltsseite.
Jeder Blogbeitrag wird in ein <article>-Element eingebettet, damit Suchmaschinen einzelne Inhaltseinheiten erkennen.
- https://developer.mozilla.org/de/docs/Web/HTML/Element/article
Français
article
En HTML, l'élément <article> représente un contenu autonome et distribuable indépendamment, comme un billet de blog, une actualité ou un message de forum. Dans un contexte web et SEO plus large, un article désigne une page de contenu éditorial structuré.
Envelopper chaque billet dans un élément <article> aide les moteurs de recherche à identifier des unités de contenu distinctes.
- https://developer.mozilla.org/fr/docs/Web/HTML/Element/article
Italiano
articolo
In HTML l'elemento <article> rappresenta un contenuto autonomo e distribuibile in modo indipendente, come un post di blog, una notizia o un messaggio di forum. In un contesto web e SEO più ampio, un articolo indica una pagina di contenuto editoriale strutturato.
Racchiudere ogni post del blog in un elemento <article> aiuta i motori di ricerca a identificare unità di contenuto distinte.
- https://developer.mozilla.org/it/docs/Web/HTML/Element/article
中文
新闻SEO
新闻SEO是指对新闻内容和网站进行优化,以便在Google新闻、热门报道(Top Stories)轮播及其他面向新闻的搜索位置中获得曝光。其重点在于时效性、结构化数据以及针对新闻出版的特定技术要求。
通过添加NewsArticle结构化数据和专门的新闻站点地图,该出版商提升了新闻SEO并出现在热门报道中。
- https://developers.google.com/search/docs/appearance/structured-data/article
- https://support.google.com/news/publisher-center/answer/9606710
English
news SEO
News SEO is the practice of optimizing news content and websites to gain visibility in Google News, the Top Stories carousel and other news-oriented search surfaces. It emphasizes timeliness, structured data and technical requirements specific to journalistic publications.
By adding NewsArticle structured data and a dedicated news sitemap, the publisher improved its news SEO and started appearing in Top Stories.
- https://developers.google.com/search/docs/appearance/structured-data/article
- https://support.google.com/news/publisher-center/answer/9606710
Deutsch
News-SEO
News-SEO bezeichnet die Optimierung von Nachrichteninhalten und -websites, um in Google News, im Karussell 'Top Stories' und anderen nachrichtenorientierten Suchflächen sichtbar zu werden. Aktualität, strukturierte Daten und spezifische technische Anforderungen stehen im Vordergrund.
Durch eine dedizierte News-Sitemap und NewsArticle-Markup verbesserte der Verlag sein News-SEO und erschien in den Top Stories.
- https://developers.google.com/search/docs/appearance/structured-data/article
- https://support.google.com/news/publisher-center/answer/9606710
Français
SEO news
Le SEO news désigne l'optimisation des contenus et sites d'actualité afin d'apparaître dans Google Actualités, le carrousel 'À la une' et d'autres surfaces de recherche orientées actualité. Il met l'accent sur la fraîcheur, les données structurées et des exigences techniques propres à la presse.
Grâce à un sitemap d'actualités dédié et au balisage NewsArticle, l'éditeur a amélioré son SEO news et est apparu dans 'À la une'.
- https://developers.google.com/search/docs/appearance/structured-data/article
- https://support.google.com/news/publisher-center/answer/9606710
Italiano
SEO news
La SEO news è l'ottimizzazione dei contenuti e dei siti di notizie per ottenere visibilità in Google News, nel carosello 'Notizie principali' e in altre superfici di ricerca orientate all'attualità. Pone l'accento su tempestività, dati strutturati e requisiti tecnici specifici dell'editoria giornalistica.
Con una sitemap di notizie dedicata e il markup NewsArticle, l'editore ha migliorato la propria SEO news comparendo tra le Notizie principali.
- https://developers.google.com/search/docs/appearance/structured-data/article
- https://support.google.com/news/publisher-center/answer/9606710
中文
新闻站点地图
一种专门的 XML 站点地图,列出网站近期的新闻文章,帮助 Google 新闻等搜索引擎快速发现和索引新闻内容。它支持发布名称和发布日期等新闻专用标签。
发布商提交了一个仅包含过去两天内发布文章的新闻站点地图。
- https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
- https://www.sitemaps.org/protocol.html
English
news sitemap
A specialized XML sitemap that lists a site's recent news articles to help search engines discover and index news content quickly for services like Google News. It supports additional news-specific tags such as publication name and publication date.
The publisher submitted a news sitemap containing only articles published within the last two days.
- https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
- https://www.sitemaps.org/protocol.html
Deutsch
News-Sitemap
Eine spezielle XML-Sitemap, die aktuelle Nachrichtenartikel einer Website auflistet, damit Suchmaschinen wie Google News diese schnell erfassen und indexieren können. Sie enthält nachrichtenspezifische Tags wie Publikationsname und Veröffentlichungsdatum.
Der Verlag reichte eine News-Sitemap ein, die nur in den letzten zwei Tagen veröffentlichte Artikel enthielt.
- https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
- https://www.sitemaps.org/protocol.html
Français
sitemap d'actualités
Un sitemap XML spécialisé qui répertorie les articles d'actualité récents d'un site afin d'aider les moteurs de recherche comme Google Actualités à les découvrir et à les indexer rapidement. Il prend en charge des balises spécifiques telles que le nom et la date de publication.
L'éditeur a soumis un sitemap d'actualités contenant uniquement des articles publiés au cours des deux derniers jours.
- https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
- https://www.sitemaps.org/protocol.html
Italiano
sitemap delle notizie
Una sitemap XML specializzata che elenca gli articoli di notizie recenti di un sito per aiutare i motori di ricerca come Google News a individuarli e indicizzarli rapidamente. Supporta tag specifici come il nome della pubblicazione e la data di pubblicazione.
L'editore ha inviato una sitemap delle notizie contenente solo articoli pubblicati negli ultimi due giorni.
- https://developers.google.com/search/docs/crawling-indexing/sitemaps/news-sitemap
- https://www.sitemaps.org/protocol.html
中文
无头 CMS
一种通过 API 提供内容存储与管理、但不含内置前端展示层的内容管理系统,使前端与后端解耦。内容通过 REST 或 GraphQL 等 API 分发到任意设备或渠道。
采用无头 CMS 后,团队可以通过单一 API 将相同内容同时分发到网站、移动应用和智能屏幕。
- https://zh.wikipedia.org/wiki/%E5%85%A7%E5%AE%B9%E7%AE%A1%E7%90%86%E7%B3%BB%E7%B5%B1
- https://www.contentful.com/r/knowledgebase/what-is-headless-cms/
English
headless CMS
A content management system that provides content storage and management via an API but has no built-in presentation layer, so the frontend is decoupled from the backend. Content is delivered to any device or channel through APIs such as REST or GraphQL.
By adopting a headless CMS, the team could deliver the same content to their website, mobile app, and smart displays through a single API.
- https://en.wikipedia.org/wiki/Headless_content_management_system
- https://www.contentful.com/r/knowledgebase/what-is-headless-cms/
Deutsch
Headless CMS
Ein Content-Management-System, das Inhalte über eine API bereitstellt, aber keine eigene Präsentationsschicht besitzt, sodass Frontend und Backend voneinander entkoppelt sind. Die Inhalte werden per REST- oder GraphQL-API an beliebige Kanäle ausgeliefert.
Mit einem Headless CMS kann die Redaktion dieselben Inhalte über eine einzige API an Website, App und Digital Signage ausspielen.
- https://de.wikipedia.org/wiki/Headless_Content_Management_System
- https://www.contentful.com/de/r/knowledgebase/what-is-headless-cms/
Français
CMS headless
Système de gestion de contenu qui met les contenus à disposition via une API sans couche de présentation intégrée, découplant ainsi le frontend du backend. Les contenus sont diffusés vers n'importe quel canal via des API REST ou GraphQL.
Grâce à un CMS headless, l'équipe diffuse le même contenu sur son site web, son application mobile et ses bornes via une seule API.
- https://fr.wikipedia.org/wiki/Syst%C3%A8me_de_gestion_de_contenu
- https://www.contentful.com/fr/r/knowledgebase/what-is-headless-cms/
Italiano
CMS headless
Sistema di gestione dei contenuti che fornisce i contenuti tramite API senza un livello di presentazione integrato, disaccoppiando così il frontend dal backend. I contenuti vengono distribuiti a qualsiasi canale mediante API REST o GraphQL.
Con un CMS headless la redazione può distribuire gli stessi contenuti su sito web, app mobile e totem digitali attraverso un'unica API.
- https://it.wikipedia.org/wiki/Content_management_system
- https://www.contentful.com/r/knowledgebase/what-is-headless-cms/
中文
无监督学习
一种机器学习范式,模型在没有预定义目标输出的情况下,从未标注的数据中发现模式、结构或分组。
将客户记录聚类为若干细分群体是无监督学习的经典应用。
- https://zh.wikipedia.org/wiki/%E7%84%A1%E7%9B%A3%E7%9D%A3%E5%AD%B8%E7%BF%92
English
unsupervised learning
A machine learning paradigm in which a model discovers patterns, structures or groupings in unlabeled data without predefined target outputs.
Clustering customer records into segments is a classic application of unsupervised learning.
- https://en.wikipedia.org/wiki/Unsupervised_learning
- https://developers.google.com/machine-learning/glossary
Deutsch
unüberwachtes Lernen
Ein Paradigma des maschinellen Lernens, bei dem ein Modell Muster, Strukturen oder Gruppierungen in ungelabelten Daten ohne vorgegebene Zielwerte erkennt.
Das Clustern von Kundendatensätzen in Segmente ist eine typische Anwendung des unüberwachten Lernens.
- https://de.wikipedia.org/wiki/Un%C3%BCberwachtes_Lernen
Français
apprentissage non supervisé
Un paradigme d'apprentissage automatique dans lequel un modèle découvre des motifs, structures ou regroupements dans des données non étiquetées, sans sorties cibles prédéfinies.
Le regroupement des enregistrements clients en segments est une application classique de l'apprentissage non supervisé.
- https://fr.wikipedia.org/wiki/Apprentissage_non_supervis%C3%A9
Italiano
apprendimento non supervisionato
Un paradigma di apprendimento automatico in cui un modello individua schemi, strutture o raggruppamenti in dati non etichettati, senza output obiettivo predefiniti.
Il raggruppamento dei record dei clienti in segmenti è un'applicazione classica dell'apprendimento non supervisionato.
- https://it.wikipedia.org/wiki/Apprendimento_non_supervisionato
中文
无障碍
在网站和数字内容的设计中,使残障人士能够感知、理解、导航并与之交互的实践。通常依据 WCAG 标准进行衡量。
为图片添加描述性替代文本是一项基础的无障碍改进措施。
- https://www.w3.org/WAI/fundamentals/accessibility-intro/
- https://zh.wikipedia.org/wiki/%E7%84%A1%E9%9A%9C%E7%A4%99%E7%B6%B2%E9%A0%81
English
accessibility
The practice of designing websites and digital content so that people with disabilities can perceive, understand, navigate and interact with them. It improves usability for all users and is often measured against the WCAG standard.
Adding descriptive alt text to images is a fundamental accessibility improvement.
- https://www.w3.org/WAI/fundamentals/accessibility-intro/
- https://developer.mozilla.org/en-US/docs/Web/Accessibility
Deutsch
Barrierefreiheit
Gestaltung von Websites und digitalen Inhalten so, dass Menschen mit Behinderungen sie wahrnehmen, verstehen, bedienen und mit ihnen interagieren können. Sie wird meist an den WCAG-Standards gemessen.
Aussagekräftige Alt-Texte für Bilder sind eine grundlegende Massnahme zur Barrierefreiheit.
- https://www.w3.org/WAI/fundamentals/accessibility-intro/
- https://de.wikipedia.org/wiki/Barrierefreies_Internet
Français
accessibilité
Conception de sites web et de contenus numériques permettant aux personnes en situation de handicap de les percevoir, comprendre, naviguer et interagir avec eux. Elle est généralement évaluée selon les normes WCAG.
Ajouter un texte alternatif descriptif aux images est une mesure d'accessibilité fondamentale.
- https://www.w3.org/WAI/fundamentals/accessibility-intro/
- https://fr.wikipedia.org/wiki/Accessibilit%C3%A9_du_web
Italiano
accessibilità
Progettazione di siti web e contenuti digitali affinché le persone con disabilità possano percepirli, comprenderli, navigarli e interagirvi. Viene generalmente valutata rispetto agli standard WCAG.
Aggiungere testi alternativi descrittivi alle immagini è una misura fondamentale di accessibilità.
- https://www.w3.org/WAI/fundamentals/accessibility-intro/
- https://it.wikipedia.org/wiki/Accessibilit%C3%A0_(informatica)
中文
日志文件分析
对服务器日志文件进行分析,以了解搜索引擎爬虫和用户如何访问网站。它揭示了哪些 URL 被抓取、抓取频率以及返回的状态码。
日志文件分析显示,Googlebot 在参数化 URL 上浪费了大量抓取预算。
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget?hl=zh-cn
- https://zh.wikipedia.org/wiki/日志文件
English
log file analysis
The examination of server log files to understand how search engine crawlers and users interact with a website. It reveals which URLs are crawled, how often, and with what status codes and response times.
Log file analysis showed that Googlebot was wasting crawl budget on faceted navigation URLs.
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
- https://en.wikipedia.org/wiki/Server_log
Deutsch
Logfile-Analyse
Die Auswertung von Server-Logdateien, um zu verstehen, wie Suchmaschinen-Crawler und Nutzer eine Website aufrufen. Sie zeigt, welche URLs mit welchem Statuscode und in welcher Häufigkeit gecrawlt werden.
Die Logfile-Analyse ergab, dass der Googlebot einen Grossteil des Crawl-Budgets für Parameter-URLs verbrauchte.
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget?hl=de
- https://de.wikipedia.org/wiki/Logdatei
Français
analyse des fichiers journaux
L'examen des fichiers journaux du serveur afin de comprendre comment les robots des moteurs de recherche et les utilisateurs accèdent à un site web. Elle révèle quelles URL sont explorées, à quelle fréquence et avec quels codes de statut.
L'analyse des fichiers journaux a montré que Googlebot gaspillait son budget d'exploration sur des URL à paramètres.
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget?hl=fr
- https://fr.wikipedia.org/wiki/Fichier_journal
Italiano
analisi dei file di log
L'esame dei file di log del server per capire come i crawler dei motori di ricerca e gli utenti accedono a un sito web. Rivela quali URL vengono scansionate, con quale frequenza e con quali codici di stato.
L'analisi dei file di log ha rivelato che Googlebot sprecava il crawl budget su URL con parametri.
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget?hl=it
- https://it.wikipedia.org/wiki/File_di_log
中文
星级评分
一种通常以一到五颗星为刻度的可视化评分,用于汇总用户对商家、产品或地点的评价。在本地 SEO 中,它显示于商家资料和富媒体搜索结果中,并影响点击率和本地排名信号。
该餐厅在 Google 商家资料上 4.7 的星级评分帮助它在本地排名中脱颖而出。
- https://support.google.com/business/answer/3474122
- https://developers.google.com/search/docs/appearance/structured-data/review-snippet
English
star rating
A visual score, typically on a scale of one to five stars, that aggregates user reviews of a business, product or place. In local SEO it appears in business profiles and rich results and influences click-through rates and local ranking signals.
The restaurant's 4.7 star rating on its Google Business Profile helped it stand out in the local pack.
- https://support.google.com/business/answer/3474122
- https://developers.google.com/search/docs/appearance/structured-data/review-snippet
Deutsch
Sternebewertung
Eine visuelle Bewertung, meist auf einer Skala von einem bis fünf Sternen, die Nutzerrezensionen zu einem Unternehmen, Produkt oder Ort zusammenfasst. Im lokalen SEO erscheint sie in Unternehmensprofilen und Rich Results und beeinflusst Klickraten und lokale Ranking-Signale.
Die Sternebewertung von 4,7 im Google-Unternehmensprofil half dem Restaurant, im Local Pack aufzufallen.
- https://support.google.com/business/answer/3474122
- https://de.wikipedia.org/wiki/Bewertungsportal
Français
note en étoiles
Une évaluation visuelle, généralement sur une échelle de une à cinq étoiles, qui agrège les avis des utilisateurs sur une entreprise, un produit ou un lieu. En SEO local, elle apparaît dans les fiches d'établissement et les rich results et influence le taux de clic et les signaux de classement local.
La note de 4,7 étoiles sur sa fiche d'établissement Google a aidé le restaurant à se démarquer dans le pack local.
- https://support.google.com/business/answer/3474122
- https://developers.google.com/search/docs/appearance/structured-data/review-snippet
Italiano
valutazione a stelle
Una valutazione visiva, generalmente su una scala da una a cinque stelle, che aggrega le recensioni degli utenti su un'attività, un prodotto o un luogo. Nella SEO locale compare nei profili aziendali e nei rich result e influenza il tasso di clic e i segnali di posizionamento locale.
La valutazione di 4,7 stelle sul profilo dell'attività su Google ha aiutato il ristorante a distinguersi nel local pack.
- https://support.google.com/business/answer/3474122
- https://developers.google.com/search/docs/appearance/structured-data/review-snippet
中文
智能体工作流
一种由人工智能驱动的流程,其中一个或多个基于大语言模型的自主智能体进行规划、推理、调用工具并通过多个步骤迭代,以在最少人工干预下完成目标。它区别于单次的提示-响应交互。
该研究助手运行一个智能体工作流,可搜索网络、总结资料并起草报告。
- https://zh.wikipedia.org/wiki/软件代理
English
agentic workflow
An AI-driven process in which one or more autonomous LLM-based agents plan, reason, use tools and iterate through multiple steps to accomplish a goal with minimal human intervention. It contrasts with a single, one-shot prompt-response interaction.
The research assistant runs an agentic workflow that searches the web, summarizes sources and drafts a report before asking for approval.
- https://www.deeplearning.ai/the-batch/how-agents-can-improve-llm-performance/
- https://en.wikipedia.org/wiki/Software_agent
Deutsch
agentischer Workflow
Ein KI-gesteuerter Ablauf, in dem ein oder mehrere autonome, LLM-basierte Agenten planen, schlussfolgern, Werkzeuge nutzen und in mehreren Schritten iterieren, um ein Ziel weitgehend selbstständig zu erreichen. Im Gegensatz zur einmaligen Prompt-Antwort-Interaktion.
Der Rechercheassistent nutzt einen agentischen Workflow, der das Web durchsucht, Quellen zusammenfasst und einen Berichtsentwurf erstellt.
- https://de.wikipedia.org/wiki/Softwareagent
Français
workflow agentique
Processus piloté par l'IA dans lequel un ou plusieurs agents autonomes fondés sur des LLM planifient, raisonnent, utilisent des outils et itèrent sur plusieurs étapes pour atteindre un objectif avec une intervention humaine minimale. Il se distingue d'une simple interaction prompt-réponse unique.
L'assistant de recherche exécute un workflow agentique qui interroge le web, résume les sources et rédige un rapport.
- https://fr.wikipedia.org/wiki/Agent_logiciel
Italiano
workflow agentico
Processo guidato dall'IA in cui uno o più agenti autonomi basati su LLM pianificano, ragionano, usano strumenti e iterano attraverso più passaggi per raggiungere un obiettivo con un intervento umano minimo. Si distingue dalla singola interazione prompt-risposta.
L'assistente di ricerca esegue un workflow agentico che cerca sul web, riassume le fonti e redige un rapporto.
- https://it.wikipedia.org/wiki/Agente_software
中文
暗网
暗网是深网的一部分,只能通过 Tor 等专用软件访问,无法被常规搜索引擎索引。它托管匿名化的服务和内容。
调查人员利用专用工具监控隐藏在暗网中的交易市场。
- https://zh.wikipedia.org/wiki/%E6%9A%97%E7%B6%B2
English
dark web
The dark web is a part of the deep web that is only accessible through specialized software such as Tor and cannot be indexed by conventional search engines. It hosts anonymized services and content, both legitimate and illicit.
Investigators used specialized tools to monitor marketplaces hidden on the dark web.
- https://en.wikipedia.org/wiki/Dark_web
Deutsch
Darknet
Das Darknet ist ein Teil des Deep Web, der nur über spezielle Software wie Tor zugänglich ist und von herkömmlichen Suchmaschinen nicht indexiert werden kann. Es beherbergt anonymisierte Dienste und Inhalte.
Die Ermittler beobachteten mehrere im Darknet versteckte Marktplätze.
- https://de.wikipedia.org/wiki/Darknet
Français
dark web
Le dark web est une partie du deep web accessible uniquement via des logiciels spécialisés comme Tor et qui ne peut être indexée par les moteurs de recherche classiques. Il héberge des services et contenus anonymisés.
Les enquêteurs ont surveillé plusieurs places de marché cachées sur le dark web.
- https://fr.wikipedia.org/wiki/Dark_web
Italiano
dark web
Il dark web è una parte del deep web accessibile solo tramite software specializzati come Tor e non indicizzabile dai motori di ricerca convenzionali. Ospita servizi e contenuti anonimizzati.
Gli investigatori hanno monitorato diversi mercati nascosti nel dark web.
- https://it.wikipedia.org/wiki/Dark_web
中文
替代文本
通过 HTML alt 属性提供的用于描述图片内容或功能的替代文字,服务于无障碍访问和图片索引。
为产品图片添加描述性的替代文本可以提升屏幕阅读器用户的无障碍体验,并有助于图片在 Google 图片搜索中的排名。
- https://www.w3.org/WAI/tutorials/images/
- https://developers.google.com/search/docs/appearance/google-images?hl=zh-cn
English
alt text
Alternative text describing the content or function of an image, provided via the HTML alt attribute for accessibility and image indexing.
Adding descriptive alt text to product images improves accessibility for screen reader users and helps images rank in Google Images.
- https://www.w3.org/WAI/tutorials/images/
- https://developers.google.com/search/docs/appearance/google-images
Deutsch
Alternativtext
Alternativer Text, der den Inhalt oder die Funktion eines Bildes beschreibt und über das HTML-Attribut alt für Barrierefreiheit und Bildindexierung bereitgestellt wird.
Ein aussagekräftiger Alternativtext für Produktbilder verbessert die Barrierefreiheit für Screenreader-Nutzer und hilft bei der Platzierung in der Google-Bildersuche.
- https://www.w3.org/WAI/tutorials/images/
- https://developers.google.com/search/docs/appearance/google-images?hl=de
Français
texte alternatif
Texte alternatif décrivant le contenu ou la fonction d'une image, fourni via l'attribut HTML alt pour l'accessibilité et l'indexation des images.
Ajouter un texte alternatif descriptif aux images de produits améliore l'accessibilité pour les utilisateurs de lecteurs d'écran et favorise le référencement dans Google Images.
- https://www.w3.org/WAI/tutorials/images/
- https://developers.google.com/search/docs/appearance/google-images?hl=fr
Italiano
testo alternativo
Testo alternativo che descrive il contenuto o la funzione di un'immagine, fornito tramite l'attributo HTML alt per l'accessibilità e l'indicizzazione delle immagini.
Aggiungere un testo alternativo descrittivo alle immagini dei prodotti migliora l'accessibilità per gli utenti di screen reader e favorisce il posizionamento in Google Immagini.
- https://www.w3.org/WAI/tutorials/images/
- https://developers.google.com/search/docs/appearance/google-images?hl=it
中文
最大内容绘制
最大内容绘制(LCP)是核心网页指标之一,用于衡量视口中可见的最大图像或文本块相对于页面开始加载时的渲染时间。它是感知加载性能的关键指标。
为了提升网站的 LCP 得分,团队优化了首屏主图并缩短了服务器响应时间。
- https://web.dev/articles/lcp
- https://developers.google.com/search/docs/appearance/core-web-vitals?hl=zh-cn
English
Largest Contentful Paint
Largest Contentful Paint (LCP) is a Core Web Vitals metric that measures the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. It is a key indicator of perceived loading performance.
To improve the site's LCP score, the team optimized the hero image and reduced server response time.
- https://web.dev/articles/lcp
- https://developers.google.com/search/docs/appearance/core-web-vitals
Deutsch
Largest Contentful Paint
Largest Contentful Paint (LCP) ist eine Core-Web-Vitals-Metrik, die die Renderzeit des grössten im Ansichtsfenster sichtbaren Bild- oder Textblocks im Verhältnis zum Ladebeginn der Seite misst. Sie ist ein zentraler Indikator für die wahrgenommene Ladeleistung.
Um den LCP-Wert der Website zu verbessern, optimierte das Team das Hero-Bild und verkürzte die Serverantwortzeit.
- https://web.dev/articles/lcp
- https://developers.google.com/search/docs/appearance/core-web-vitals?hl=de
Français
Largest Contentful Paint
Largest Contentful Paint (LCP) est une métrique des Core Web Vitals qui mesure le temps de rendu du plus grand bloc d'image ou de texte visible dans la fenêtre d'affichage, par rapport au début du chargement de la page. C'est un indicateur clé de la performance de chargement perçue.
Pour améliorer le score LCP du site, l'équipe a optimisé l'image d'en-tête et réduit le temps de réponse du serveur.
- https://web.dev/articles/lcp
- https://developers.google.com/search/docs/appearance/core-web-vitals?hl=fr
Italiano
Largest Contentful Paint
Largest Contentful Paint (LCP) è una metrica dei Core Web Vitals che misura il tempo di rendering del blocco di immagine o testo più grande visibile nell'area di visualizzazione, rispetto all'inizio del caricamento della pagina. È un indicatore chiave delle prestazioni di caricamento percepite.
Per migliorare il punteggio LCP del sito, il team ha ottimizzato l'immagine hero e ridotto il tempo di risposta del server.
- https://web.dev/articles/lcp
- https://developers.google.com/search/docs/appearance/core-web-vitals?hl=it
中文
最终点击归因
一种归因模型,将转化的全部功劳归于用户在转化前最后一次互动的渠道或触点,忽略客户旅程中之前的所有互动。
在最终点击归因下,购买前最后点击的付费搜索广告获得全部转化功劳。
- https://support.google.com/analytics/answer/10596866
English
last-click attribution
An attribution model that assigns 100% of the credit for a conversion to the last channel or touchpoint the user interacted with before converting. It ignores all preceding interactions in the customer journey.
Under last-click attribution, the paid search ad clicked right before purchase receives all the conversion credit.
- https://support.google.com/analytics/answer/10596866
- https://en.wikipedia.org/wiki/Attribution_(marketing)
Deutsch
Last-Click-Attribution
Ein Attributionsmodell, das den gesamten Wert einer Conversion dem letzten Kanal oder Kontaktpunkt zuschreibt, mit dem der Nutzer vor der Conversion interagiert hat. Vorangegangene Interaktionen der Customer Journey werden ignoriert.
Bei der Last-Click-Attribution erhält die unmittelbar vor dem Kauf angeklickte Suchanzeige den vollständigen Conversion-Wert.
- https://support.google.com/analytics/answer/10596866
- https://de.wikipedia.org/wiki/Attribution_(Marketing)
Français
attribution au dernier clic
Modèle d'attribution qui attribue la totalité du mérite d'une conversion au dernier canal ou point de contact avec lequel l'utilisateur a interagi avant de convertir. Il ignore toutes les interactions précédentes du parcours client.
Avec l'attribution au dernier clic, l'annonce de recherche payante cliquée juste avant l'achat reçoit tout le crédit de la conversion.
- https://support.google.com/analytics/answer/10596866
- https://fr.wikipedia.org/wiki/Attribution_(marketing)
Italiano
attribuzione all'ultimo clic
Modello di attribuzione che assegna l'intero merito di una conversione all'ultimo canale o punto di contatto con cui l'utente ha interagito prima di convertire, ignorando tutte le interazioni precedenti del percorso del cliente.
Con l'attribuzione all'ultimo clic, l'annuncio della rete di ricerca cliccato subito prima dell'acquisto riceve tutto il merito della conversione.
- https://support.google.com/analytics/answer/10596866
- https://it.wikipedia.org/wiki/Attribuzione_(marketing)
中文
最近邻搜索
一种优化问题,根据某种距离度量在数据集中找到与给定查询点最接近的点。它是嵌入向量高维空间中相似性搜索的基础。
向量数据库通过最近邻搜索来检索与查询语义最相似的文档。
- https://zh.wikipedia.org/wiki/%E6%9C%80%E8%BF%91%E9%84%B0%E5%B1%85%E6%B3%95
English
nearest neighbor search
An optimization problem that finds the point in a dataset closest to a given query point according to a distance metric. It underpins similarity search in high-dimensional vector spaces used by embeddings.
The vector database performs nearest neighbor search to retrieve the most semantically similar documents for a query.
- https://en.wikipedia.org/wiki/Nearest_neighbor_search
Deutsch
Nächste-Nachbarn-Suche
Ein Optimierungsproblem, bei dem zu einem Anfragepunkt der nach einer Distanzmetrik nächstgelegene Punkt in einem Datensatz gesucht wird. Sie bildet die Grundlage der Ähnlichkeitssuche in hochdimensionalen Vektorräumen von Embeddings.
Die Vektordatenbank nutzt die Nächste-Nachbarn-Suche, um die semantisch ähnlichsten Dokumente zu einer Anfrage zu finden.
- https://de.wikipedia.org/wiki/N%C3%A4chste-Nachbarn-Klassifikation
Français
recherche du plus proche voisin
Problème d'optimisation consistant à trouver, dans un ensemble de données, le point le plus proche d'un point de requête selon une métrique de distance. Elle est au cœur de la recherche par similarité dans les espaces vectoriels à haute dimension des embeddings.
La base de données vectorielle effectue une recherche du plus proche voisin pour retrouver les documents les plus similaires à la requête.
- https://fr.wikipedia.org/wiki/Recherche_des_plus_proches_voisins
Italiano
ricerca del vicino più prossimo
Problema di ottimizzazione che consiste nel trovare in un insieme di dati il punto più vicino a un punto di query secondo una metrica di distanza. È alla base della ricerca per similarità negli spazi vettoriali ad alta dimensionalità degli embedding.
Il database vettoriale esegue una ricerca del vicino più prossimo per recuperare i documenti più simili alla query.
- https://it.wikipedia.org/wiki/K-nearest_neighbors
中文
有害链接
来自低质量、垃圾或操纵性来源的反向链接,可能损害网站的搜索排名或触发 Google 的惩罚。有害链接通常在链接审计中被识别,并通过拒绝链接工具(disavow)予以处理。
SEO 审计发现有多个来自私人博客网络的有害链接指向客户网站首页。
- https://developers.google.com/search/docs/essentials/spam-policies?hl=zh-cn
- https://support.google.com/webmasters/answer/2648487?hl=zh-Hans
English
toxic link
A backlink from a low-quality, spammy or manipulative source that can harm a website's search rankings or trigger a Google penalty. Toxic links are typically identified during link audits and neutralized via disavowal.
The SEO audit flagged several toxic links from a private blog network pointing to the client's homepage.
- https://developers.google.com/search/docs/essentials/spam-policies
- https://support.google.com/webmasters/answer/2648487
Deutsch
toxischer Link
Ein Backlink von einer minderwertigen, spammigen oder manipulativen Quelle, der dem Ranking einer Website schaden oder eine Google-Abstrafung auslösen kann. Toxische Links werden bei Link-Audits erkannt und über das Disavow-Tool entwertet.
Beim Link-Audit wurden mehrere toxische Links aus einem Linknetzwerk identifiziert und zur Entwertung eingereicht.
- https://developers.google.com/search/docs/essentials/spam-policies?hl=de
- https://support.google.com/webmasters/answer/2648487?hl=de
Français
lien toxique
Backlink provenant d'une source de faible qualité, spammy ou manipulatrice, susceptible de nuire au classement d'un site ou de déclencher une pénalité Google. Les liens toxiques sont détectés lors d'audits de liens et neutralisés via l'outil de désaveu.
L'audit de liens a révélé plusieurs liens toxiques issus d'un réseau de blogs privés.
- https://developers.google.com/search/docs/essentials/spam-policies?hl=fr
- https://support.google.com/webmasters/answer/2648487?hl=fr
Italiano
link tossico
Backlink proveniente da una fonte di bassa qualità, spam o manipolativa, che può danneggiare il posizionamento di un sito o innescare una penalizzazione di Google. I link tossici vengono individuati durante gli audit dei link e neutralizzati tramite lo strumento di disavow.
L'audit dei link ha segnalato diversi link tossici provenienti da una rete di blog privati.
- https://developers.google.com/search/docs/essentials/spam-policies?hl=it
- https://support.google.com/webmasters/answer/2648487?hl=it
中文
有据回答
由人工智能或搜索系统生成的、基于可验证的来源文档或检索到的数据而非仅依赖模型内部参数的回答。这种基于事实的锚定(grounding)可减少幻觉并支持引用来源。
通过检索已编入索引的网页,聊天机器人生成了带有来源引用的有据回答。
- https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview
English
grounded answer
An answer generated by an AI or search system that is anchored in verifiable source documents or retrieved data rather than relying solely on the model's internal parameters. Grounding reduces hallucinations and typically links or cites the underlying sources.
By retrieving passages from indexed web pages, the chatbot produces a grounded answer with inline citations.
- https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview
- https://en.wikipedia.org/wiki/Retrieval-augmented_generation
Deutsch
fundierte Antwort
Eine von einem KI- oder Suchsystem erzeugte Antwort, die auf überprüfbaren Quelldokumenten oder abgerufenen Daten beruht statt allein auf dem internen Modellwissen. Diese Verankerung (Grounding) verringert Halluzinationen und ermöglicht Quellenangaben.
Durch das Abrufen indexierter Webseiten liefert der Chatbot eine fundierte Antwort mit Quellenverweisen.
- https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview
Français
réponse ancrée
Réponse générée par un système d'IA ou de recherche qui s'appuie sur des documents sources vérifiables ou des données récupérées plutôt que sur les seules connaissances internes du modèle. Cet ancrage (grounding) réduit les hallucinations et permet de citer les sources.
En récupérant des passages de pages web indexées, l'assistant fournit une réponse ancrée assortie de citations.
- https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview
Italiano
risposta ancorata
Risposta generata da un sistema di IA o di ricerca che si basa su documenti fonte verificabili o su dati recuperati anziché sulla sola conoscenza interna del modello. Questo ancoraggio (grounding) riduce le allucinazioni e consente di citare le fonti.
Recuperando passaggi da pagine web indicizzate, il chatbot produce una risposta ancorata con citazioni delle fonti.
- https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview
中文
有用内容
主要为用户创作、提供原创、令人满意且可靠信息的内容,与主要为在搜索引擎中获得高排名而制作的内容相对。该概念是谷歌“有用内容系统”(Helpful Content System)的核心。
网站转向创作有用内容而非堆砌关键词,在核心算法更新后可见度显著提升。
- https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=zh-cn
English
helpful content
Content created primarily for people that provides original, satisfying and reliable information, as opposed to content produced mainly to rank well in search engines. The concept was central to Google's Helpful Content System, later integrated into the core ranking systems.
Focusing on helpful content rather than keyword stuffing improved the site's visibility after the last core update.
- https://developers.google.com/search/docs/fundamentals/creating-helpful-content
- https://developers.google.com/search/blog/2022/08/helpful-content-update
Deutsch
hilfreicher Content
Inhalte, die in erster Linie für Menschen erstellt werden und originelle, zufriedenstellende sowie verlässliche Informationen bieten, im Gegensatz zu Inhalten, die vor allem für ein gutes Suchmaschinen-Ranking produziert werden. Das Konzept war zentral für Googles Helpful Content System.
Statt Keyword-Stuffing setzte die Redaktion auf hilfreichen Content, was die Sichtbarkeit deutlich verbesserte.
- https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=de
Français
contenu utile
Contenu créé avant tout pour les utilisateurs, offrant des informations originales, satisfaisantes et fiables, par opposition au contenu produit principalement pour bien se classer dans les moteurs de recherche. Ce concept était au cœur du Helpful Content System de Google.
En privilégiant un contenu utile plutôt que la sur-optimisation, le site a regagné en visibilité après la mise à jour de l'algorithme.
- https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=fr
Italiano
contenuto utile
Contenuto creato principalmente per le persone che offre informazioni originali, soddisfacenti e affidabili, in contrapposizione ai contenuti prodotti soprattutto per posizionarsi bene nei motori di ricerca. Il concetto era centrale nell'Helpful Content System di Google.
Puntando su contenuti utili invece che su tecniche di sovraottimizzazione, il sito ha recuperato visibilità dopo l'aggiornamento dell'algoritmo.
- https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=it
中文
服务器响应时间
Web 服务器响应请求所需的时间,通常以从发送请求到接收响应第一个字节之间的间隔来衡量。它是页面加载性能的关键因素。
将服务器响应时间降低到 200 毫秒以下后,网站的核心网页指标得分得到了改善。
- https://web.dev/articles/ttfb
- https://developer.mozilla.org/zh-CN/docs/Web/Performance/Guides/Understanding_latency
English
server response time
The time a web server takes to respond to a request, typically measured as the interval between sending a request and receiving the first byte of the response. It is a key factor in page load performance.
Reducing the server response time below 200 milliseconds improved the site's Core Web Vitals scores.
- https://developer.mozilla.org/en-US/docs/Web/Performance/Guides/Understanding_latency
- https://web.dev/articles/ttfb
Deutsch
Serverantwortzeit
Die Zeit, die ein Webserver benötigt, um auf eine Anfrage zu reagieren, meist gemessen als Intervall zwischen dem Senden der Anfrage und dem Empfang des ersten Antwort-Bytes. Sie ist ein wesentlicher Faktor für die Ladeleistung einer Seite.
Durch die Reduktion der Serverantwortzeit auf unter 200 Millisekunden verbesserten sich die Core-Web-Vitals-Werte der Website.
- https://developer.mozilla.org/de/docs/Web/Performance/Guides/Understanding_latency
- https://web.dev/articles/ttfb
Français
temps de réponse du serveur
Durée nécessaire à un serveur web pour répondre à une requête, généralement mesurée comme l'intervalle entre l'envoi de la requête et la réception du premier octet de la réponse. C'est un facteur clé de la performance de chargement d'une page.
En réduisant le temps de réponse du serveur en dessous de 200 millisecondes, les scores Core Web Vitals du site se sont améliorés.
- https://developer.mozilla.org/fr/docs/Web/Performance/Guides/Understanding_latency
- https://web.dev/articles/ttfb
Italiano
tempo di risposta del server
Il tempo impiegato da un server web per rispondere a una richiesta, generalmente misurato come intervallo tra l'invio della richiesta e la ricezione del primo byte della risposta. È un fattore chiave per le prestazioni di caricamento di una pagina.
Riducendo il tempo di risposta del server sotto i 200 millisecondi, i punteggi Core Web Vitals del sito sono migliorati.
- https://developer.mozilla.org/it/docs/Web/Performance/Guides/Understanding_latency
- https://web.dev/articles/ttfb
中文
服务器日志
由Web服务器自动创建和维护的文件,记录其处理的每个请求,包括IP地址、时间戳、请求的URL、状态码和用户代理。在SEO中,服务器日志用于分析爬虫的抓取行为。
通过分析服务器日志,我们发现Googlebot在分面导航URL上浪费了抓取预算。
- https://zh.wikipedia.org/wiki/%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%97%A5%E5%BF%97
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
English
server log
A file automatically created and maintained by a web server that records every request it processes, including IP address, timestamp, requested URL, status code and user agent. In SEO, server logs are analysed to understand crawler behaviour.
By parsing the server log, we discovered that Googlebot was wasting crawl budget on faceted navigation URLs.
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
- https://en.wikipedia.org/wiki/Server_log
Deutsch
Server-Log
Eine vom Webserver automatisch erstellte Protokolldatei, die jede verarbeitete Anfrage mit IP-Adresse, Zeitstempel, angeforderter URL, Statuscode und User-Agent festhält. Im SEO werden Server-Logs zur Analyse des Crawler-Verhaltens ausgewertet.
Durch die Auswertung des Server-Logs stellten wir fest, dass der Googlebot sein Crawl-Budget an Filter-URLs verschwendete.
- https://de.wikipedia.org/wiki/Logdatei
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
Français
journal du serveur
Fichier créé et tenu à jour automatiquement par un serveur web, qui enregistre chaque requête traitée avec l'adresse IP, l'horodatage, l'URL demandée, le code de statut et l'agent utilisateur. En SEO, les journaux du serveur sont analysés pour comprendre le comportement des robots.
En analysant le journal du serveur, nous avons découvert que Googlebot gaspillait son budget de crawl sur des URL de navigation à facettes.
- https://fr.wikipedia.org/wiki/Fichier_journal
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
Italiano
log del server
File creato e mantenuto automaticamente da un server web che registra ogni richiesta elaborata, con indirizzo IP, timestamp, URL richiesto, codice di stato e user agent. Nella SEO i log del server vengono analizzati per comprendere il comportamento dei crawler.
Analizzando il log del server abbiamo scoperto che Googlebot sprecava il crawl budget su URL di navigazione a faccette.
- https://it.wikipedia.org/wiki/File_di_log
- https://developers.google.com/search/docs/crawling-indexing/large-site-managing-crawl-budget
中文
服务器端渲染
一种在服务器上为每个请求生成网页 HTML 并将完全渲染好的页面发送给客户端的技术,而非在浏览器中通过 JavaScript 构建页面。它可以改善首次加载性能,并使内容更易于被搜索引擎爬虫抓取和索引。
通过改用服务器端渲染,团队确保 Googlebot 无需执行 JavaScript 即可为产品页面建立索引。
- https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics?hl=zh-cn
- https://web.dev/articles/rendering-on-the-web
English
server-side rendering
A technique in which the HTML of a web page is generated on the server for each request and sent fully rendered to the client, rather than being built in the browser via JavaScript. It improves initial load performance and makes content readily available to search engine crawlers.
By switching to server-side rendering, the team ensured that Googlebot could index the product pages without executing JavaScript.
- https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics
- https://web.dev/articles/rendering-on-the-web
Deutsch
Server-side Rendering
Verfahren, bei dem das HTML einer Webseite serverseitig für jede Anfrage erzeugt und fertig gerendert an den Client ausgeliefert wird, statt es im Browser per JavaScript aufzubauen. Es verbessert die anfängliche Ladezeit und erleichtert Suchmaschinen-Crawlern die Indexierung der Inhalte.
Durch die Umstellung auf Server-side Rendering konnte der Googlebot die Produktseiten ohne Ausführung von JavaScript indexieren.
- https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics?hl=de
- https://de.wikipedia.org/wiki/Serverseitiges_Rendern
Français
server-side rendering
Technique consistant à générer le HTML d'une page web côté serveur pour chaque requête, puis à l'envoyer entièrement rendu au client, plutôt que de le construire dans le navigateur via JavaScript. Elle améliore le temps de chargement initial et facilite l'indexation du contenu par les robots des moteurs de recherche.
En passant au server-side rendering, l'équipe s'est assurée que Googlebot puisse indexer les pages produits sans exécuter le JavaScript.
- https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics?hl=fr
- https://web.dev/articles/rendering-on-the-web
Italiano
server-side rendering
Tecnica con cui l'HTML di una pagina web viene generato lato server per ogni richiesta e inviato già renderizzato al client, anziché essere costruito nel browser tramite JavaScript. Migliora il tempo di caricamento iniziale e agevola l'indicizzazione dei contenuti da parte dei crawler dei motori di ricerca.
Passando al server-side rendering, il team ha garantito che Googlebot potesse indicizzare le pagine dei prodotti senza eseguire JavaScript.
- https://developers.google.com/search/docs/crawling-indexing/javascript/javascript-seo-basics?hl=it
- https://web.dev/articles/rendering-on-the-web
中文
服务器错误
服务器错误是指状态码在 5xx 范围内的 HTTP 响应状态,表示服务器无法完成一个本应有效的请求。持续的服务器错误会阻碍抓取并损害索引编制。
网站更新后,Search Console 报告服务器错误激增,大多为 HTTP 500 响应。
- https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Status#%E6%9C%8D%E5%8A%A1%E5%99%A8%E9%94%99%E8%AF%AF%E5%93%8D%E5%BA%94
- https://developers.google.com/search/docs/crawling-indexing/http-network-errors?hl=zh-cn
English
server error
A server error is an HTTP response condition in the 5xx status code range indicating that the server failed to fulfil an otherwise valid request. In SEO, persistent server errors can block crawling and harm indexing.
Googlebot reported a spike in server errors after the site update, mostly HTTP 500 responses.
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#server_error_responses
- https://developers.google.com/search/docs/crawling-indexing/http-network-errors
Deutsch
Serverfehler
Ein Serverfehler ist ein HTTP-Antwortzustand im Statuscode-Bereich 5xx, der anzeigt, dass der Server eine an sich gültige Anfrage nicht erfüllen konnte. Anhaltende Serverfehler können das Crawling behindern und die Indexierung beeinträchtigen.
Nach dem Website-Update meldete die Search Console vermehrt Serverfehler mit dem Statuscode HTTP 500.
- https://developer.mozilla.org/de/docs/Web/HTTP/Status#serverfehler
- https://developers.google.com/search/docs/crawling-indexing/http-network-errors?hl=de
Français
erreur serveur
Une erreur serveur est un état de réponse HTTP appartenant à la plage de codes 5xx, indiquant que le serveur n'a pas pu satisfaire une requête pourtant valide. Des erreurs serveur persistantes peuvent bloquer l'exploration et nuire à l'indexation.
Après la mise à jour du site, la Search Console a signalé une hausse des erreurs serveur, principalement des réponses HTTP 500.
- https://developer.mozilla.org/fr/docs/Web/HTTP/Status#r%C3%A9ponses_d%27erreur_c%C3%B4t%C3%A9_serveur
- https://developers.google.com/search/docs/crawling-indexing/http-network-errors?hl=fr
Italiano
errore del server
Un errore del server è uno stato di risposta HTTP nell'intervallo dei codici 5xx, che indica che il server non è riuscito a soddisfare una richiesta altrimenti valida. Errori del server persistenti possono bloccare la scansione e danneggiare l'indicizzazione.
Dopo l'aggiornamento del sito, la Search Console ha segnalato un aumento degli errori del server, per lo più risposte HTTP 500.
- https://developer.mozilla.org/it/docs/Web/HTTP/Status#risposte_di_errore_del_server
- https://developers.google.com/search/docs/crawling-indexing/http-network-errors?hl=it
中文
未链接提及
指在网络内容中出现的对品牌、产品或网站的文本引用,但未附带超链接。在链接建设和数字公关中常将其作为目标,转化为实际的反向链接。
该团队在网络上搜索品牌的未链接提及,并联系编辑将其转化为链接。
- https://ahrefs.com/blog/zh/unlinked-mentions/
English
unlinked mention
A textual reference to a brand, product or website that appears in online content without an accompanying hyperlink. It is often targeted in link-building and digital PR to be converted into an actual backlink.
The agency scanned the web for unlinked mentions of the brand and reached out to editors to turn them into links.
- https://ahrefs.com/blog/unlinked-mentions/
- https://moz.com/learn/seo/link-building
Deutsch
unverlinkte Erwähnung
Eine textliche Nennung einer Marke, eines Produkts oder einer Website in Online-Inhalten ohne begleitenden Hyperlink. Sie wird im Linkaufbau und in der digitalen PR häufig angestrebt, um daraus einen echten Backlink zu gewinnen.
Das SEO-Team suchte nach unverlinkten Erwähnungen der Marke und bat die Redaktionen, daraus Links zu machen.
- https://ahrefs.com/blog/de/unlinked-mentions/
Français
mention non liée
Référence textuelle à une marque, un produit ou un site web apparaissant dans un contenu en ligne sans hyperlien associé. Elle est souvent ciblée en netlinking et en relations presse numériques pour être transformée en backlink.
L'agence a repéré des mentions non liées de la marque et a contacté les rédactions pour les convertir en liens.
- https://ahrefs.com/blog/fr/unlinked-mentions/
Italiano
menzione non collegata
Riferimento testuale a un brand, un prodotto o un sito web presente in un contenuto online senza un collegamento ipertestuale associato. È spesso oggetto di link building e digital PR per essere convertita in un backlink effettivo.
L'agenzia ha individuato le menzioni non collegate del marchio e ha contattato le redazioni per trasformarle in link.
- https://ahrefs.com/blog/it/unlinked-mentions/
中文
本体
对某一领域内的概念、其属性以及概念之间关系的形式化、明确的规范说明,用于实现共享理解和机器推理。在信息检索和自然语言处理中,本体对知识进行结构化,使系统能够解释含义而非仅仅是字符串。
搜索引擎利用本体来理解“美洲豹”一词可以根据上下文指动物或汽车。
- https://zh.wikipedia.org/wiki/本体_(信息科学)
- https://www.w3.org/standards/semanticweb/ontology
English
ontology
A formal, explicit specification of concepts, their properties and the relationships between them within a domain, used to enable shared understanding and machine reasoning. In information retrieval and NLP, ontologies structure knowledge so systems can interpret meaning rather than mere strings.
The search engine uses an ontology to understand that a 'jaguar' can be an animal or a car depending on context.
- https://en.wikipedia.org/wiki/Ontology_(information_science)
- https://www.w3.org/standards/semanticweb/ontology
Deutsch
Ontologie
Eine formale, explizite Spezifikation von Konzepten, ihren Eigenschaften und den Beziehungen zwischen ihnen innerhalb einer Domäne, die gemeinsames Verständnis und maschinelles Schlussfolgern ermöglicht. Im Information Retrieval und NLP strukturieren Ontologien Wissen, damit Systeme Bedeutung statt reiner Zeichenketten interpretieren können.
Die Suchmaschine nutzt eine Ontologie, um zu erkennen, dass 'Jaguar' je nach Kontext ein Tier oder ein Auto sein kann.
- https://de.wikipedia.org/wiki/Ontologie_(Informatik)
- https://www.w3.org/standards/semanticweb/ontology
Français
ontologie
Spécification formelle et explicite de concepts, de leurs propriétés et des relations entre eux au sein d'un domaine, permettant une compréhension partagée et le raisonnement automatique. En recherche d'information et en TAL, les ontologies structurent les connaissances pour que les systèmes interprètent le sens plutôt que de simples chaînes de caractères.
Le moteur de recherche utilise une ontologie pour comprendre que « jaguar » peut désigner un animal ou une voiture selon le contexte.
- https://fr.wikipedia.org/wiki/Ontologie_(informatique)
- https://www.w3.org/standards/semanticweb/ontology
Italiano
ontologia
Specifica formale ed esplicita di concetti, delle loro proprietà e delle relazioni tra essi all'interno di un dominio, che consente comprensione condivisa e ragionamento automatico. Nel recupero delle informazioni e nell'NLP le ontologie strutturano la conoscenza affinché i sistemi interpretino il significato anziché semplici stringhe.
Il motore di ricerca usa un'ontologia per capire che «giaguaro» può indicare un animale o un'auto a seconda del contesto.
- https://it.wikipedia.org/wiki/Ontologia_(informatica)
- https://www.w3.org/standards/semanticweb/ontology