function _boost_variable_set in Boost 6
Internal variable set; don't rely on cache table.
Parameters
$name: variable name
$value: variable value
1 call to _boost_variable_set()
- boost_crawler_run in ./
boost.module - The brains of the crawler.
File
- ./
boost.module, line 5384 - Provides static file caching for Drupal text output. Pages, Feeds, ect...
Code
function _boost_variable_set($name, $value) {
db_query("UPDATE {variable} SET value = '%s' WHERE name = '%s'", serialize($value), $name);
}