The values from the "Custom Variables" feature in
System -> Custom Variables
are not, as far as I can see, cached specially. If it helps you solve your client's problem I wouldn't let this stop you from using them. Other things will cause performance problems sooner.
If you look at the primary place Magento uses these variables
#File: app/code/core/Mage/Core/Model/Email/Template/Filter.php
public function customvarDirective($construction)
{
$customVarValue = '';
$params = $this->_getIncludeParameters($construction[2]);
if (isset($params['code'])) {
$variable = Mage::getModel('core/variable')
->setStoreId($this->getStoreId())
->loadByCode($params['code']);
$mode = $this->getPlainTemplateMode()?Mage_Core_Model_Variable::TYPE_TEXT:Mage_Core_Model_Variable::TYPE_HTML;
if ($value = $variable->getValue($mode)) {
$customVarValue = $value;
}
}
return $customVarValue;
}
You can see they're loaded with the following chained method call
$variable = Mage::getModel('core/variable')
->setStoreId($this->getStoreId())
->loadByCode($params['code']);
So you know there's no caching at this level of code. If you jump to the core/variable model class file
#File: app/code/core/Mage/Core/Model/Variable.php
public function loadByCode($code)
{
$this->getResource()->loadByCode($this, $code);
return $this;
}
you can see theres no caching logic in the loadByCode method. A quick grep through the entire file also reveals no mention of the string "cache".
Then, if you look at the model resource
#File: app/code/core/Mage/Core/Model/Resource/Variable.php
public function loadByCode(Mage_Core_Model_Variable $object, $code)
{
if ($result = $this->getVariableByCode($code, true, $object->getStoreId())) {
$object->setData($result);
}
return $this;
}
again there's no special caching logic. Also, a grep through this file for the string "cache" reveals nothing.
Finally, running the following code in an otherwise empty controller action will dump the variable values.
public function indexAction()
{
$values = Mage::getModel('core/variable')
->setStoreId(1)
->loadByCode('abc');
var_dump($values->getData());
exit;
}
If you do this, then use a separate tool to update the core_variable_value table and reload the page, you'll see the values are updated.
All of this points to the values not being cached.