vote up 7 vote down star
4

I've seen quite a few developer job postings recently that include a sentence that reads more or less like this: "Must have experience with N-Tier architecture", or "Must be able to develop N-Tier apps".

This leads me to ask, what is N-Tier architecture? How does one gain experience with it?

flag

4 Answers

vote up 19 vote down check

Wikipedia:

In software engineering, multi-tier architecture (often referred to as n-tier architecture) is a client-server architecture in which, the presentation, the application processing and the data management are logically separate processes. For example, an application that uses middleware to service data requests between a user and a database employs multi-tier architecture. The most widespread use of "multi-tier architecture" refers to three-tier architecture.

It's debatable what counts as "tiers," but in my opinion it needs to at least cross the process boundary. Or else it's called layers. But, it does not need to be in physically different machines. Although I don't recommend it, you can host logical tier and database on the same box.

alt text

Edit: One implication is that presentation tier and the logic tier (sometimes called Business Logic Layer) needs to cross machine boundaries "across the wire" sometimes over unreliable, slow, and/or insecure network. This is very different from simple Desktop application where the data lives on the same machine as files or Web Application where you can hit the database directly.

For n-tier programming, you need to package up the data in some sort of transportable form called "dataset" and fly them over the wire. .NET's DataSet class or Web Services protocol like SOAP are few of such attempts to fly objects over the wire.

link|flag
1  
+1 for a pretty picture :p – Davy8 Nov 23 '08 at 7:05
1  
"3-tiers" and "N-tiers" is there a difference? – chakrit Nov 23 '08 at 8:05
1  
It depends on how you count "tiers" (logical, physical, etc), but you can easily have more than 3 process involved to write an app. UI, UI platform (like Eclipse RCP), Web Services, BLL, DAL, Database, Authentication Services, Reporting Services, Analytical Services... – eed3si9n Nov 23 '08 at 8:12
@eed3si9n I see. – chakrit Nov 23 '08 at 8:23
vote up 4 vote down

It's based on how you separate the presentation layer from the core business logic and data access (Wikipedia)

3-tier means Presentation layer + Component layer + Data access layer. N-tier is when unneccessary layers are added beyond these three and it's labeled with a buzzword so it doesn't seem like your architects are a bunch of crack monkeys. I say this based on the N-tier architecture I have to work with.

link|flag
actually if one of those tiers is hosted by a remote party, for instance a payment processor, that tier may not be so "unnecessary" – Zak Mar 30 at 17:45
vote up 1 vote down

It's a buzzword that refers to things like the normal Web architecture with e.g., Javascript - ASP.Net - Middleware - Database layer. Each of these things is a "tier".

link|flag
vote up -1 vote down

It's my understanding that N-Tier separates business logic, client access and data from each other using separate physical machines. The theory is that one of them can be updated independently of the others.

link|flag
1  
doesn't have to be separate machines... – LuftMensch Feb 18 at 16:33

Your Answer

Get an OpenID
or

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