I'm rewriting a big website, that needs very solid architecture, here are my few questions, and pardon me for mixing apples and oranges and probably kiwi too:) I did a lot of research and ended up totally confused.

Main question: Which approach would you take in building a big website expected to grow in every way?

  1. Single entry point, pages data in the database, pulled by associating GET variable with database entry (?pageid=whatever)

  2. Single entry point, pages data in separate files, included based on GET variable (?pageid=whatever would include whatever.php)

  3. MVC (Alright guys, I'm all for it, but can't grasp the concept besides checking all tutorials and frameworks out there, do they store "view" in database? Seems to me from examples that if you have 1000 pages of same kind they can be shaped by 1 model, but I'll still need to have 1000 "views" files?)

  4. PAC - this sounds even more logical to me, but didn't find much resources - if this is a good way to go, can you recommend any books or links?

  5. DAL/DAO/DDD - i learned about these terms by diligently reading through stack overflow before posting question. Not sure if it belongs to this list

  6. Sit down and create my own architecture (likely to do if nobody enlightens me here:)

  7. Something not mentioned...

Thanks.

link|improve this question

2  
I am a big fan of MVC design pattern, here is a tutorial that I think will clarify some of the questions you have. php-html.net/tutorials/model-view-controller-in-php – serialk Nov 30 '10 at 17:27
If you are planning to make your own architecture, give me a call =D After being sourly disappointed with Drupal I've been considering making something with more power. If anyone out there is a Drupal fan, feel free to contact me as well. I'll gladly share my bad experiences. If you'd rather figure out my problem first hand, try to create a content type for a table with variable columns. – stevendesu Nov 30 '10 at 17:42
1  
All these things you mentioned here has nothing to do with handling high traffic. You can choose whatever you wish, though some of the points are just lame. Also keep in mind that 99% of people who says a word "MVC" here, have not a slightest idea of what it is. – Your Common Sense Nov 30 '10 at 19:05
Just because MVC isn't native to PHP and implementations vary, doesn't mean it isn't a good idea. Abstracting the view, especially, is a monumentally good idea. A close second is the usefulness of abstracting access to and logic operating on your data. – zanlok Nov 30 '10 at 21:43
feedback

6 Answers

up vote 2 down vote accepted

Just got done typing this and realized it's pretty long-winded; I'm just excited to be able to explain to someone something I love doing! If you have any questions just comment and ask.

If you're willing to code it yourself, go with number 6; modular back-end systems are the way to go. I love designing them! This means you have a piece of code (usually a PHP class and usually called a registry) that loads up other classes (called modules) upon runtime, creating a sort of "api" for your site. This also means your entire system is loaded up with one include, and functionality is obtained through simple calls to your library.

If you get really fancy (like what I've done before) is to plan your modules so they are loaded on the first call made to them.

The way mine is set up is that I have a directory with my modules in it, and the registry (the first thing to be included onto the page) initializes itself and searches that directory for .PHP files, require_once's them and uses the file name for each class to know what the class is called; for example, a file called "mysql.php" contains a PHP class called "mysql" that is instantiated upon runtime.

A simple registry class:

<?php

// This actual code won't work, but it
// gives you an idea of the structure.

final class registry
{
    private static $_modules = array();

    // Call this first.
    public static function init()
    {
        opendir(); // Open the modules directory
        foreach($file as $f)
        {
            // Read the directory,file by file
            if(substr($f, -4) == ".php")
            {
                // Require it
                require_once($f);

                $name = substr($f, 0, -4);

                // Instantiate (this line WILL work)
                $cls = new $name();
                // Push it to modules array
                self::$_modules[$name] = $cls;
            }
        }
    }

    // References a module
    public static function m($name)
    {
        return self::$_modules[$name];
    }
}

?>

And a simple module:

<?php
// Again, this exact code won't work,
// but it gives you an idea of the structure.
// This is a php class that would be
// called by the above registry.

final class some_module extends module
{
// You can make your own module class if you'd like.
// Helps with derivation and creating a template 
// for modules.

    public function __construct()
    {
        // Instantiation code here
    }

    public function test()
    {
        die("Test Module!");
    }

    public function __destruct()
    {
        // Destruction code here;
        // Good for modules that handle
        // MySQL databases or files, because
        // you can put calls like mysql_close()
        // here. It's very tidy!
    }
}
?>

and then, to use the registry, you'll make calls to the registry. This means that after you've designed the backend (with as many different modules as you need), then you can make pages quick and easily. For instance, here's a page that would utilize your backend:

<?php
// This code would, in theory, work.
// This would be a page that includes
// your registry with modules.
require_once("registry.php");

// Initialize the registry;
// This loads all the modules.
registry::init();

// Let's call that function from that module we 
// made earlier:
registry::m("some_module")->test(); // Should die with "Test module!"


?>

Why is this ideal, and how is it scalable/fast?

Simple! Once your registry class is complete, you can, in theory, load up modules only as you need them (instead of loading, say, 100 modules on startup). The way you want to handle this is up to you (sometimes I have a boolean in my module base class that indicated whether or not to load automatically or manually).

It's extremely scalable simply because you can add more and more modules to add functionality to pages; some examples are to handle configuration, mysql, sessions, output buffering (which, if you don't know what that is, look it up! It helps with big back end sites like you're describing) site strings (even go as far as language management and translations), and then even modules that affect other modules (like going above and beyond basic mysql functionality to create scripts that do exactly what you want your mysql database to do, like user registry, etc.)

It's ideal simply because you want something that is easy to manage and build on, without being too dirty. Modularized systems like I am describing are perfect for this; they just take a little bit more initial coding to create your registry and some basic modules!

Just a note

Something that may speed up your commands, instead of using registry::m("module")->func(); is to assign a variable with the class; for example:

<?php
     $mysql = registry::m("mysql");
     $mysql->query("SELECT * FROM `blah`");
?>

This cuts down on typing and code and such.

link|improve this answer
The OP meant "scalability" as "high traffic" not as "maintainable". Your ideas are scalable for the dev, but I suspect would actually not contribute to the high traffic requirement. – alphadogg Nov 30 '10 at 22:09
Of course it would. Modules that are extended off of a base class are extremely small and contain specialized code meant just for that module. If the page only loads modules that it needs (i.e. if it needs configuration values but not a mysql connection), it cuts down on a tremendous amount of otherwise include code. While 100% procedural PHP is ideal for smaller sites, and is (technically) the fastest PHP can get, object oriented and modularized code is scalable for both the developer and for the traffic requirements. – Di-0xide Nov 30 '10 at 22:13
On top of that, frameworks for large sites tend to be bloated; if you wan't a backend that does exactly what you want it to do, the best way would to be coding it yourself. – Di-0xide Nov 30 '10 at 22:16
1  
Di-0xide, special thanks to you for all the code, explanations and observations. I like your approach very much. I think it can be very benefitial to both performance and maintenace - as even on smaller (but very active) websites, lack of modularity, redundancy and repetitiveness have cost me hours of time spent for doing simple stuff...This modular apporach really inspires me to create my own RGF (really great framework:) – Freelancer Nov 30 '10 at 22:39
1  
Winning points is a lame reason to post something. Like the OP has tagged his question, he was looking for a PHP solution, NOT an Objective C question. I don't see how that hints at us purely wanting to "gain points", and instead see it as offering the most relevant help to the OP. I'm done arguing this on this question as it is not the correct place to do so. – Di-0xide Dec 5 '10 at 9:01
show 11 more comments
feedback

Scalability/availability (iow. high-traffic) for websites is best addressed by none of the items you mention. Especially points 1 and 2; storing the page definitions in a database is an absolute no-no. MVC and other similar patterns are more for code clarity and maintenance, not for scalability.

An important piece of missing information is what kind of concurrent hits/sec are you expecting? Sometimes, people who haven't built high-traffic websites are surprised at the hit rates that actually constitute a "scalability nightmare".

There are books on how to design scalable architectures, so an SO post will not be able to the topic justice, but some very top-level concepts, in no particular order, are:

  • Scalability is best handled first by looking at hardware-based solutions. A beefy server with an array of SSD disks can go a long way.
  • Make static anything that can be static. Serve as much as you can from the web server, not the DB. For example, a lot of pages on websites dynamically generate data lists out of databases from data stores that very rarely or never really change.
  • Cache output that changes infrequently, and tune the cache refresh.
  • Build dynamic pages to be stateless or asynchronous. Look into CQRS and Event Sourcing for patterns that favor/facilitate scaling.
  • Tune your queries. The DB is usually the big bottleneck since it is a shared resource. Lots of web app builders use ORMs that create poor queries.
  • Tune your database engine. Backups, replication, sweeping, logging, all of these require just a little bit of resource from your engine. Tuning it can lead to a faster DB that buys you time from a scale-out.
  • Reduce the number of HTTP requests from clients. Each HTTP connect has overhead. Check your pages and see if you can increase the payload in each request so as to reduce the overall number of individual requests.

At this point, you've optimized the behavior on one server, and you have to "scale out". Now, things get very complicated very fast. Load-balancing scenarios of various types (sharding, DNS-driven, dumb balancing, etc), separating read data from write data on different DBs, going to a virtualization solution like Google Apps, offload static content to a big CDN service, use a language like Erlang or Scala and parallelize your app, etc...

link|improve this answer
re #4, one cannot overemphasize the merits of memcached and, secondly, APC which helps address #2 (avoiding recompiles, etc) – zanlok Nov 30 '10 at 21:41
Actually, in #2, the technique involves specifically and fully bypassing active caching subsystems. I've built sites that have fully static pages from database data where the creation of that page is triggered by updates to the table. The table is never read from, except to create the related page. If the table isn't updated for months, the related page is untouched. Caches always involve some amount of "polling", which are just more resource hits. – alphadogg Nov 30 '10 at 21:45
Wow! I really have to thank each and every one of you guys who posted here, so much really fantastic and useful info. I have a question for alphadogg, in relation to "storing the page definitions in a database is an absolute no-no" - does that include html code too? As the site I'm working on will have CMS, with kind of WYSIWYG editor, meaning some html tags would be there. – Freelancer Nov 30 '10 at 22:24
By "page definitions", I meant HTML. If you store the stuff in a given mypage.htm, and all associated mypage.css, mypage1.inc, mypage2.inc, etc., pages as records in a database, you have taken a step backwards in scalability. Caching is the real-time way to avoid going to the DB. But, even caching still has overhead and resource consumption. Make as much static as you can, even if it means that sometimes, you have to manipulate database data into a static page. – alphadogg Dec 1 '10 at 20:05
1  
BTW, that system was not MVCed, DDDed or IOCed, which is taken as religion these days. None of those would have made it noticeably faster. It was good procedural code. Rethinking the real bottleneck did. – alphadogg Dec 1 '10 at 20:10
show 1 more comment
feedback

I'm a fan of MVC because I've found it easier to scale your team when everything has a place and is nice and compartmentalized. It takes some getting used to, but the easiest way to get a handle on it is to dive in.

That said definitely check your local library to see if they have the O'Reilley book on scaling: http://oreilly.com/catalog/9780596102357 which is a good place to start.

link|improve this answer
feedback

Single entry point, pages data in the database, pulled by associating GET variable with database entry (?pageid=whatever)

Potential nightmare for maintenance. And also for development if you have team of more than 2-3 people. You would need to create a set of strict rules for everyone to adhere to - effort that would be much better spent if using MVC. Same goes for 2.

MVC (Alright guys, I'm all for it, but can't grasp the concept besides checking all tutorials and frameworks out there, do they store "view" in database? Seems to me from examples that if you have 1000 pages of same kind they can be shaped by 1 model, but I'll still need to have 1000 "views" files?)

It depends how many page layouts are there. Most MVC frameworks allow you to work with structured views (i.e. main page views, sub-views). Think of a view as HTML template for the web page. How many templates and sub-templates inside you need is exactly how many view's you'll have. I believe most websites can get away with up to 50 main views and up to 100 subviews - but those are very large sites. Looking at some sites I run, it's more like 50 views in total.

DAL/DAO/DDD - i learned about these terms by diligently reading through stack overflow before posting question. Not sure if it belongs to this list

It does. DDD is great if you need meta-views or meta-models. Say, if all your models are quite similar in structure, but differ only in database tables used and your views almost map 1:1 to models. In that case, it is a good time for DDD. A good example is some ERP software where you don't need a separate design for all the database tables, you can use some uniform way to do all the CRUD operations. In this case you could probably get away with one model and a couple of views - all generated dynamically at run-time using meta-model that maps database columns, types and rules to logic of programming language. But, please note that it does take some time and effort to build a quality DDD engine so that your application doesn't look like hacked-up MS Access program.

Sit down and create my own architecture (likely to do if nobody enlightens me here:)

If you're building a public-facing website, you're most likely going to do it well with MVC. A very good starting point is to look at CodeIgniter video tutorials. It helped me understand what MVC really is and how to use it way better than any HOWTO or manual I read. And they only take 29minutes altogether:

http://codeigniter.com/tutorials/

Enjoy.

link|improve this answer
MVC and DDD are not directly related to the ability to handle high traffic. – alphadogg Nov 30 '10 at 22:08
1  
To quote the OP: a big website expected to grow in every way. This means that maintenance is important. Both MVC and DDD are directly related to that. Ability to handle high traffic is completely different and one should look into stuff like PageSpeed, YSlow, PHP-APC, nginx, load-balancing, mysql optimization, etc. but that is not what OP is asking. Maybe he should change the title of the question a little bit. – Milan Babuškov Dec 2 '10 at 13:14
feedback

If you're creating a "big" website and don't fully grasp MVC or a web framework then a CMS might be a better route since you can expand it with plugins as you see fit. With this route you can worry more about the content and page structure rather than the platform. As long as you pick the appropriate CMS.

link|improve this answer
CMS is hardly a good idea for high traffic websites. – Milan Babuškov Dec 2 '10 at 13:18
Disagree. backendbattles.com/backend/drupal – vilepickle Dec 3 '10 at 20:17
feedback

I would suggest to create a mock app with some of the web mvc frameworks in the wild and pick one, with which your development was smooth enough. Establishing your code on a solid basis is fundamental, if you want to grasp concepts of mvc and be ready to add new functionality to your web easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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