Refactoring or Rewriting Monolithic PHP Spaghetti Codebase

Posted by nategood on Stack Overflow See other posts from Stack Overflow or by nategood
Published on 2009-06-09T17:56:59Z Indexed on 2010/06/02 7:33 UTC
Read the original article Hit count: 225

I've inherited a really poorly designed PHP spaghetti code project. It's been gaining a good bit of traffic recently and is starting to have performance issues on top of the poor monolithic code base. Its maxing out performance on a chunky 16GB dedicated machine when it really shouldn't be.

I'm planning on doing some performance tweaks right off the bat to help the performance issue, but this still won't really help the horrible code base. The team is small but expecting to grow very soon.

I've read Joel's article on the troubles of doing a complete rewrite and see the concerns. But how bad does the code base have to be before you consider a rewrite?

There is PHP handling logic interjected into what one would usually consider a "view". Even worse, in some places SQL statements are in these same files! The only real separation of presentation and logic are a few PHP scripts that serve as function libraries. These scripts do most of the ORM stuff... if you can even call it that. Trying to slowly refractor this seems like a nightmare.

Open to your thoughts and opinions... however not interested in hearing, "Run away, Run away!".

© Stack Overflow or respective owner

Related posts about php

Related posts about Performance