In the Web context what is a proxy?

Asked

Viewed 77 times

7

How to work with this technology and what its use on the day of a web application is in the case of client or server ?

Use cases can be in any language, just for understanding its functioning.

1 answer

2

A proxy is an "intermediary" between a client and a server.

A typical proxy use case is server balancing. Let’s assume that a site has 10 servers. However, the site only receives requests by a proxy, which redirects each request received to one of the 10 servers, so that the workload is divided equally between the 10 servers.

Another use case is the cache proxy. In this case, repetitive requests and static pages like images, scripts, etc stay in the proxy memory, not on disk, to improve response performance. Generally speaking, only dynamic pages would be passed to backend servers.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.