Web Architecture
Everything on SkillVeris tagged Web Architecture — collected across the glossary, study notes, blog, and cheat sheets.
6 resources across 1 library
Interview Questions(6)
What is a Reverse Proxy?
A reverse proxy is a server that sits in front of one or more backend servers and accepts client requests on their behalf, forwarding each request to an approp…
Forward Proxy vs Reverse Proxy: What is the Difference?
A forward proxy sits in front of clients and hides the client’s identity from the servers it connects to, while a reverse proxy sits in front of servers and hi…
What is Session Persistence?
Session persistence (also called sticky sessions) is a load balancer feature that routes all requests from a given client to the same backend server for the du…
What is a Reverse Proxy?
A reverse proxy is a server that sits in front of one or more backend servers and forwards client requests to them, returning the response back to the client a…
What is a Single-Page Application?
A single-page application (SPA) loads one HTML shell up front and then rewrites the page in the browser with JavaScript, fetching only data — not full new page…
What is Progressive Enhancement?
Progressive enhancement is a design strategy that starts with a basic, functional HTML experience for every user and browser, then layers on CSS and JavaScript…