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.

I want to create an application with n-tier architecture. I want to design each layer as a plug-in component.

Is it correct that designing a n-tier architecture application where each layer is a plug-in component?

share|improve this question

1 Answer

That's not how I'd think of an n-Tier application- it sounds more like a pluggable architecture to me.

Usually n-Tier architectures define a tier as a physical layer- so your client is one one physical machine, business logic is on a second and the datastore is on a third.

If you design appropriately, you can plugin components on each of those tiers, but the existence of plugins by themselves does not make an n-Tier appllication.

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.