HTML DNS Prefetch
- Categories:
- html
DNS prefetch merupakan fitur dari browser dimana secara background melakukan resolusi nama domain, misal dari kaklabs.com menjadi ip address 127.0.0.1.
Secara bandwidth pengaruhnya kecil, namun secara latency pengaruhnya cukup besar apalagi di jaringan internet mobile.
Dengan menggunakan fitur DNS prefetch, ketika pengunjung situs melakukan klik link latency yang terjadi menjadi lebih rendah. Dalam beberapa kasus, latency dapat menurun hingga satu detik.
Prefetch Secara Manual
Untuk melakukan prefetch secara manual dengan tag HTML
Browser akan melakukan pre-resolve ke nama domain https://www.kaklabs.com. Tanpa url yang complete juga bisa dengan memberikan dua karakter slash sebelum hostname
DNS Prefetch Control
Server dapat mematikan fitur DNS prefetch dengean mengirim header x-dns-prefetch-control
manjadi “off”.
atau bisa juga mematikan DNS prefetch dengan meta tag.
Di browser Chromium, jika DNS prefetch “off”, maka ketika “on” browser tetap tidak menjadi “on” karena DNS prefetch “off” telah dijalankan. Behaviour ini kemungkinan sama dengan dengan browser Google Chrome.
Secara default browser Chromium tidak melakukan prefetch resolusi domain terhadap hyperlinks dengan protokol HTTPS.
Jika meta tag x-dns-prefetch-control
“on” digunakan, maka seluruh link baik di protokol HTTPS atau HTTP akan dilakukan prefetch tanpa menyentuh konfigurasi prefetch yang ditulis secara manual dengan meta tag dns-prefetch
.
Referensi:
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.