ネガティブキャッシュ(NXDOMAIN)
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://tldfyi.com/iframe/glossary/negative-caching/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://tldfyi.com/glossary/negative-caching/
Add a dynamic SVG badge to your README or docs.
[](https://tldfyi.com/glossary/negative-caching/)
Use the native HTML custom element.
ネガティブキャッシュは、RFC 2308で定義されているように、[[recursive-dns|再帰リゾルバ]]が否定的なDNS応答 — 最も一般的にはNXDOMAIN(「非存在ドメイン」)とNODATA応答 — を保存することです。リゾルバが存在しないドメインをクエリしてNXDOMAIN応答を受け取ると、[[soa-record|SOAレコード]]の最小TTLフィールドで指定された期間、この否定的な結果をキャッシュし、同じ存在しない名前への繰り返しの上流クエリを防ぎます。ネガティブキャッシュは、タイポストームやクエリ洪水時の[[authoritative-dns|権威サーバー]]の負荷を軽減します。否定的な[[ttl|TTL]]は通常、肯定的なレコードのTTLより短く、一般的に60〜3600秒に設定されます。
使用例
If a resolver queries for mispeld.example.com and receives NXDOMAIN, it caches that negative answer for the SOA minimum TTL (e.g., 300 seconds), returning the cached NXDOMAIN instantly to any client asking for the same name within that window.