B/S architecture refers to the "browser/server" architecture, which is a network architecture model that can concentrate the core parts of system function implementation into the server, while simplifying system development, maintenance and It can be run through the browser without the need to install other clients.
The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
B/S architecture (Browser/Server, browser/server architecture) is a network architecture model that concentrates the core parts of system function implementation into the server, while simplifying the system The development, maintenance and use can be run through the browser without the need to install other clients.
B/S architecture is a browser server structure. With the continuous development of new technologies, it is a change or improved architecture to the C/S architecture. Next, in the article, we will introduce the advantages and disadvantages of the B/S structure in detail, which has certain reference value. I hope it will be helpful to everyone
The meaning of B/S architecture
The B/S structure refers to the Browser/Server (browser/server) structure, which means that only one server needs to be installed and maintained, and the client uses a browser to run the software. It emerged with the Internet technology and is a change and improvement of the C/S structure. It mainly uses WWW browser technology, combined with a variety of Script languages and new technologies, to concentrate the core parts of system function implementation on the server, simplifying the development, maintenance and use of the system. It is a brand-new software system construction technology. It only needs to install a browser and database, and then the browser can interact with the database through the Web Server.
Advantages of B/S architecture:
(1) This architecture does not require the installation of a client and can be run directly in a web browser
(2) The B/S architecture can be placed directly on the Internet network to achieve the purpose of controlling multi-client access and interaction methods through certain privileges.
(3) B/S architecture does not require client installation, so there are no problems such as updating multiple clients and upgrading servers.
Disadvantages of B/S architecture:
(1) In cross-browser, B/S architecture is not the most satisfactory architecture
(2) It takes a lot of effort to reach the level of CS program. Yes
(3) In terms of speed and security, it still requires huge design costs, which is the biggest problem in the B/S architecture.
(4) Client-server interaction is a request-response mode, which usually requires refreshing the page, which is not what customers want to see. However, this shortcoming has been alleviated to a certain extent after Ajax became popular
Summary: The above is the entire content of this article. I hope that this article can help everyone better understand B/S Architecture
The above is the detailed content of What is B/S architecture. For more information, please follow other related articles on the PHP Chinese website!