willbanks

Mike Willbanks' Blog: RPM Packaging - Building and Deploying you...

PHPDeveloper.org  Thu, 12/22/2011 - 09:41

Mike Willbanks has a new post to his blog about a different sort of technique for deploying PHP - building your own RPMs instead of just using the pre-packaged ones.

This opens up a whole world of customization options.


 

How long is too long (for unit test method names)? - blog.phpdev...

Planet PHP  Wed, 01/12/2011 - 13:44

As I ws working on some new development in our codebase this morning, I started updating some
unit tests to match.

I was looking through the code for one of them and came across a test name that was easily 50 characters long and
it got me wondering – what was the popular opinion on naming conventions and commenting in unit tests.

Obviously, there’s some things
(like annotations) that have to be in comments, but do you sacrifice clarity of a comment for a method name that you can basically read
like a novel?


 

Mike Willbanks' Blog: Zend Framework Cache Backend Libmemcached ...

PHPDeveloper.org  Mon, 10/25/2010 - 09:13

Mike Willbanks has a new tutorial posted to his blog today about combining memcache and the Zend Framework's caching component to work with session handling.


 

Mike Willbanks' Blog: Integrating Gearman Into Zend Framework

PHPDeveloper.org  Mon, 10/18/2010 - 09:28

In this new post to his blog Mike Willbanks shows you how you can integrate the Gearman tool (for automating multiple workers to do jobs behind the scenes) into a Zend Framework application, creating a full setup and a sample job.


 

Integrating Gearman Into Zend Framework - Mike Willbanks

Planet PHP  Sat, 10/16/2010 - 22:34

When scale and performance is important, you start to look into moving operations into synchronous or asynchronous tasks.

This is important for any web application that must scale out and/or to add new ways of handling feedback to your users.

While I will not be going into detail of how to operate Gearman or briefing you on ways of utilizing gearman, what I am going to show you is how to incorporate Gearman into being it’s own Zend Framework application.


 

Getting Started with Nginx and PHP-FPM - Mike Willbanks

Planet PHP  Mon, 07/12/2010 - 21:44

Nginx, a HTTP and reverse proxy server, known for its blazing speed in serving static files, including grand performance in terms of serving up FastCGI pages makes for a great coupling with the upcoming PHP-FPM sapi in PHP (It is currently in the 5.3 branch and previously was a patch) offer a great solution for finally getting rid of that old sloppy mod_php in Apache.

Do you have the same issue where your apache instances have started to run too large? This might be the time to start to move forward.


 

Mike Willbanks' Blog: Deployment of PHP Applications

PHPDeveloper.org  Fri, 10/09/2009 - 08:04

Mike Willbanks recently posted a look at deployment in PHP applications and all of the processes/systems surrounding it:


 

Mike Willbanks' Blog: PHP Type Hinting

PHPDeveloper.org  Wed, 07/08/2009 - 11:57

There's been lots of talk about type hinting lately (both on blogs and on mailing lists) so Mike Willbanks has decided to add some of his own thoughts about why it should be included.