CS, that is, C/S (Client/Server) structure, is a client and server structure. CS is also a software system architecture. Through it, we can make full use of the advantages of the hardware environment at both ends, reasonably allocate tasks to the Client and Server, and reduce the communication overhead of the system. 1
BS is the Browser/Server (browser/server) structure, which means that only one server is installed and maintained, and the client uses the browser to run the software.
What is the difference between cs and bs?
The difference between cs and bs:
1. Development and maintenance Cost
The development and maintenance cost of cs is higher than that of bs. Because when using the cs structure, different programs need to be developed for different clients, and software installation, debugging, and upgrades need to be performed on all clients.
bs, you only need to upgrade the software version on the server and then log in again.
2. Client load
cs client load is huge. The cs client is not only responsible for interacting with users and collecting user information, but also needs to make requests to the server through the network.
bs hands over the transaction processing logic part to the server, and the client is only responsible for display.
3. Security
cs has high security. cs is suitable for systems used by dedicated personnel, and software can be distributed through strict management.
bs has many users, is not fixed, and has low security.
The above is the detailed content of What is the difference between cs and bs. For more information, please follow other related articles on the PHP Chinese website!