Implementation of View vs Physical View in a 4 + 1 architectural model

As I read about the 4+1 architectural view model from the following link http://en.wikipedia.org/wiki/4%2B1_architectural_view_model

What are the exact differences between an implementation view and a Physical view ??

PS: I know that the first one is from the point of view of the programmer, and the second from the system engineer.

+4
source share
1 answer

A physical representation is used to describe how software is deployed in data centers. For example: if you created a web application, say you are deploying it to the Amazon AWS cloud. Then the physical representation will show how many servers are used, what is the role of their server, what software components are installed on it, etc. Therefore, you can say that this view is more important for your operating group (system engineers, as indicated on this Wiki page)

A look at development is a conversation between developers regarding what software design is. This mainly concerns the logical organization of your code - package, classes, etc.

I hope he clarifies.

+4
source

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


All Articles