Difference between server and client

后端 未结 3 1734
自闭症患者
自闭症患者 2021-01-22 15:30

What is the difference between server and client? What difference does it make for some software installations?

For example, I\'ve checked on how to download and install

3条回答
  •  故里飘歌
    2021-01-22 15:52

    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.

提交回复
热议问题