===== Client-Server ===== [[dido:public:ra:xapend:xapend.a_glossary:start| Return to Glossary ]] The Client-Server model helped developers address the [[dido:public:ra:xapend:xapend.a_glossary:s:scalable|scalability]] issues of the [[dido:public:ra:xapend:xapend.a_glossary:p:point-to-point|Point-to-Point]] [[dido:public:ra:xapend:xapend.a_glossary:c:communications_model|communication model]]. Client-server networks designate one special [[dido:public:ra:xapend:xapend.a_glossary:s:server|server]] node that connects simultaneously to many [[dido:public:ra:xapend:xapend.a_glossary:c:client|client]] nodes, as illustrated below. Client-server is a "many-to-one" communications architecture.
{{ :dido:public:ra:xapend.glossary:c:client_server_communications.png?300 |}} Client-Server Communication
The client-server network architecture works best when information is centralized, such as in databases, transaction processing systems, and file servers. However, if information is being generated at multiple [[dido:public:ra:xapend:xapend.a_glossary:n:node|nodes]], a client-server architecture requires that all information are sent to the server for later redistribution to the clients. This approach is inefficient and precludes deterministic communications, since the client does not know when new information is available. The time between when the information is available on the server, and when the client asks and receives it adds a variable [[dido:public:ra:xapend:xapend.a_glossary:l:latency|latency]] to the system. Example of Client-Server Communication Ordering pizza over the phone is an example of client-server communication. Clients must know the phone number of the pizza parlor to place an order. The parlor can handle many orders without knowing ahead of time where people (clients) are located. After the order (request), the parlor asks the client where the response (pizza) should be sent. In the client-server model, each response is tied to a prior request. As a result, the response can be tailored to each request. In other words, each client makes a request (order) and each reply (pizza) is made for one specific client in mind. Provided by: [[https://community.rti.com/glossary/client-server]]