Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the difference between 3 tier and 3 layer architecture ?

share|improve this question
1  
possible duplicate of What's the difference between "Layers" and "Tiers"? – Guffa Apr 6 '11 at 11:46
1  
how is architecture not programming related? – oɔɯǝɹ Apr 6 '11 at 11:50

2 Answers

In architecture, tiers relate to 'platform' layers (sql server is a data tier, iis is a web tier), and layers relate to logical layers (presentation-, bussines-, data access-, data- layer).

There is an overlap between tiers and layers (for example, you can deploy the data layer to the data tier). You can choose to host multiple tiers on the same machines without impact on the architecture. Combining layers goes against a 3 layer architecture.

The relationship is that you deploy your layers on your tiers. In UML this is modeled in a deployment view.

share|improve this answer

When you architect a website you need to consider how much compute power and memory you will need at each level of the sites operation. You will also need to consider security, scalability, and manageability of the site. For that reason it is a good idea to build your site as separate application parts that work together as a shared solution.

What is a Layer: A layer is simply application divisions (or different applications) running on the same server.

What is a Tier: A tier references the fact that an application that is part of the overall site or solution runs on a different server (or machine). In this you can not host multiple tiers on the same machine as by definition a tier is a separate machine. Visualization (hypervisors like VMware or Hyper-V can blur this line, but for the sake of clarity lets disregard them at this time)

Why do you need to consider this? Some aspects of your overall website or solution work well on the same machine while others do not. A good example is that as the site grows the Data Access Layer (DAL) and the Database (DB) use their processing and memory differently than the Presentation Layer (PL or GUI - General User Interface) and the Business Logic Layer (BL). Additionally, you will want more security on the DAL and the DB side to ensure the data is not being tampered with.

Overlap between LAYERS and Tiers: You can run more than one layer on one tier (machine). It is very common to start out a website running most of the functionality on one server and then break things up as your website grows and you add more functionality. It is also very common to run the Presentation Layer and the Business Logic Layer on the same tier. As you add rules to the BL layer, however, and as things get more complicated you want to have a site that will allow you to move an layer to another server when needed (or tier).

Hope this helps! If you like the answer mark as best please.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.