Introduction to the Client Server Architecture

Sharing is Caring

The Client Server Architecture is one of the most popular architectures used. It’s best used when security aspects are an important part of the problem, and when multiple users need to access common information and common applications.

It is a distributed architecture that allows us to partition workloads between the providers of the service and service requestors. The service provider is called a server, and the service consumer is called a client. A server listens for requests and services them as clients request them.

The client has to be relatively smart to know how to send and receive requests – they are essentially linked to the server by request/reply connectors.

The client server architecture is usually used best when there’s a need for a cohesive end-to-end process that all users need to use and access. For the most part, everything needs to be centralized on a server.

The biggest disadvantage of this architecture is that servers are expensive to purchase and manage and they are difficult to scale up to a large enough size if growth is expected. Layered Architecture or n-Tier is often a better long-term choice.

The client server architecture is often used for online applications like email, file sharing, or even banking.

Sharing is Caring

Brian is a software architect and technology leader living in Niagara Falls with 13+ years of development experience. He is passionate about automation, business process re-engineering, and building a better tomorrow.

Brian is a proud father of four: two boys, and two girls and has been happily married to Crystal for more than ten years. From time to time, Brian may post about his faith, his family, and definitely about technology.

1 Comments

  1. Pingback: What are REST API's constraints? - Brian Cline

Comments are closed.