You are here

function variable_cache_set in Variable 6

Set value in cache

1 call to variable_cache_set()
variable_info in ./variable.module
Get variable information

File

./variable.module, line 226
Variable API module

Code

function variable_cache_set($name, $data, $langcode = 'default') {
  cache_set($name . ':' . $langcode, $data, 'variable_cache');
}