ThingyMaJig

Thingy Ma Jig is the blog of Nicholas Thompson and contains any useful tips, sites and general blog-stuff which are considered interesting or handy!

Connect

LinkedIn GitHub

Topics

announcement 25 apache 3 Apple 1 bash 8 code 7 cool 30 Days Out 8 Dark Basic Pro 4 design 12 doctor who 1 Drupal 74 E4600 1 EOS 400D 3 firefox 2 Flickr 3 free 21 games 5 geek 38 git 2 GreaseMonkey 1 hardware 7 Homebrew 1 How to 37 humour 5 iphone 1 javascript 1 jquery 1 K800i 6 k850i 4 lighttpd 3 linux 33 mac 9 miscellaneous 4 mobile phone 9 music 4 mysql 8 n73 1 n95 1 New Relic 1 Ogre3D 1 OS X 2 performance 3 photos 10 programming 40 Quicksilver 1 review 19 security 3 SEO 6 software 12 svn 2 technology 4 tip 7 tips 10 tv 3 video 3 vim 7 webdev 2 websites 33 wii 1 windows 1 YADS 10

Drush Cron & XCache can cause var_size errors

Posted on 14 April 2010 in
Drupal performance tips

I use a cron script on this server which fires up Drush to run Cron (rather than the standard wget method). There is nothing wrong with using wget, however it does tie up an apache or lighttpd process while cron is running. It also means it's harder to control process priority. Drush, on the other hand, runs in CLI mode, so controlling process priority is easier (using nice). But then I started seeing odd errors…

I also use an XCache tweak on this site (Blog post about that is in the pipeline). The tweak is done in a custom cache.inc file which allows me to store cached pages in the XCache variables and then, using the page_cache_fastpath function, I can pull the pages out and serve them without even connecting to the database. It is a HUGE performance improvement.

However, it turns out that XCache doesn't run in CLI mode and I was getting the following error in my cron logs:

xcache.var_size is either 0 or too small to enable var data caching

So for anyone else that is seeing this error in their logs, remember... XCache doesn't run in CLI mode and is therefore unavailable. This means any custom code you have which depends on the XCache variables will not work!