Negatives Caching (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.
Negatives Caching ist die Speicherung negativer DNS-Antworten — hauptsächlich NXDOMAIN ("Nicht-Existente Domain") und NODATA-Antworten — durch [[recursive-dns|rekursive Resolver]], wie in RFC 2308 definiert. Wenn ein Resolver eine nicht existierende Domain abfragt und eine NXDOMAIN-Antwort erhält, speichert er dieses negative Ergebnis für die im Mindest-TTL-Feld des [[soa-record|SOA-Eintrags]] angegebene Dauer, und verhindert so wiederholte Upstream-Anfragen für denselben nicht existenten Namen. Negatives Caching reduziert die Last auf [[authoritative-dns|autoritativen Servern]] bei Tippfehler-Stürmen oder gezielten Anfragewellen. Der negative [[ttl|TTL]] ist typischerweise kürzer als die TTLs positiver Einträge, üblicherweise zwischen 60 und 3600 Sekunden.
Beispiel
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.