Difference between server and client

时光毁灭记忆、已成空白 提交于 2019-12-02 07:42:19

A server is a program, or machine, that waits for incoming requests.

A client is a program, or machine, that sends requests to servers.

Wikipedia: Server (computing), Client (computing)

For cvs; Are you setting up your own project, in which case you will need to set up the cvs server as well as a client to connect to said server. Or are you connecting to an existing project, in which case you need the client.

In simplest form, a server is a connection point for several clients, that will handle their requests.

A client is software that (usually) connects to the server to perform actions. The client provide a user interface that allows users to carry out actions. It forwards these requests to the server, which carries out the action and returns a response.

In CVS, the server is where the central data repository is held, and client is what you use to access the said repository.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!