Tag Archives: symfony

Drupal vs. Frameworks

We are partially a Drupal web development shop (we like to use the right tool for the job), and we have done quite a bit of work using Drupal. These days the community is quickly becoming more and more commercialized by various companies each offering to solve a problem. And while this is not a bad thing, we often feel that many of the problems that are being solved are problems with Drupal itself in the way its design and development decisions are approached. As of version 8, we don’t see hopes of the problems addressed here improving. Scalability Drupal has a massive problem with scalability. For example one of the problems with its design is hooks. Now hooks in theory sound like a great idea… however, in practice they are anything but. The reason for this is that because of hooks, every single piece of code must be loaded at each point. PHP has something called auto-loading, however Drupal can not, as of at least 6.0, take advantage of this. Instead, Drupal loads every bit of code on each …