What is the difference between a multi-user web application and a multi-layer web application?

What is the difference between a multi-user web application and a multi-level web application?

+3
source share
4 answers

Layers Refer to certain levels of abstraction in the application (software), where as levels. Refer to the physical location of these layers (hardware)

App.Layer == "Software" ----- logic
App.Tier == "Hardware" ------ physical


Layers:
1) presentation layer
2) business -level
3) level of access to data
4) data layer
5) external level of access to the system

Levels:
1) Presentation level (web server)
2) Data level (database server)

+6
source

, , -, , , as layer , -, ui ..

+8

@Cybernate:

, - , .

-, .

+2

A multilayer application means the logical separation of functionality into assemblies, for example, a data layer, a presentation layer, a business layer, etc. All assemblies can also be deployed on the same physical machine.

A tiered application deals with physical deployment.

+1
source

Source: https://habr.com/ru/post/1787586/


All Articles