Caché Negativo (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.
El caché negativo es el almacenamiento de respuestas DNS negativas — principalmente NXDOMAIN ("Dominio No Existente") y respuestas NODATA — por parte de [[recursive-dns|resolvers recursivos]], según lo definido en el RFC 2308. Cuando un resolver consulta un dominio que no existe y recibe una respuesta NXDOMAIN, almacena en caché este resultado negativo durante el tiempo especificado en el campo TTL mínimo del [[soa-record|registro SOA]], evitando consultas ascendentes repetidas para el mismo nombre inexistente. El caché negativo reduce la carga de los [[authoritative-dns|servidores autoritativos]] durante tormentas de errores tipográficos o inundaciones de consultas dirigidas. El [[ttl|TTL]] negativo es típicamente más corto que el de los registros positivos, generalmente entre 60 y 3600 segundos.
Ejemplo
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.