Viper Cache Nearly Done

Published on
I spent some time working on Viper Cache last night. It's going to get a new name at some point, but it's close to being done. I'm going to test it on this site for a while and see if I can iron out any bugs. ...

Viper Cache Alpha Reviewed

Published on
Well, this is interesting. I gave a few individuals an alpha version of the Viper Cache plugin I've been working on. It has just been reviewed on Anieto2k, one of the largest plugin sites. The author compared it against all the Wordpress plugins available today for caching. The full write-up is available here. The article looks like it is in Spanish so you'll just have to settle for the pictures. Based on a few guesses in the translation, it looks like Viper Cache is the lowest in memory out of all four, and allows around 1330 pages per second on the test machine compared to the second place runner ...

How To Make Your Website Or Blog Faster

Published on
There are a lot of different ways you can increase the speed of your website, even if you have relatively cheap hosting. If you're lucky, your blogging platform already has a caching engine built in (Drupal does). If you're unlucky, and running something like Wordpress, you have to do a bit more work. Caching makes a website more responsive because it takes an expensive operation (such as a long database query) and stores it so that next time it doesn't have to recompute it entirely. For example, when you go to this website, normally Apache would execute PHP, parse the Wordpress code, do some ...

Wordpress Viper Cache Alpha

Published on
I've been dabbling with a new caching engine for Wordpress over the last few weeks. While WP-Cache does a pretty decent job, it falls short in a few areas, and it's something I've been trying to fix. In particular, here's what I don't like about it: It relies on the entire Wordpress engine to do it's caching It doesn't make use of proper HTTP caching headers The problem with the first item is that even if you have a cache hit, the entire Wordpress PHP core is parsed and partially executed. What that means is the caching system will always be limited by how fast the PHP parser is on the host ...