function _cache_set in Coder 7.2
Stores data in the cache.
Parameters
string $cid: ???
mixed $data: ???
string $bin: (optional) The name of the bin in which to store the cached data.
Return value
??? ???
See also
1 call to _cache_set()
- do_coder_reviews in coder_review/
coder_review.common.inc - Performs coder reviews for multiple code review definition files.
File
- coder_review/
coder_review.common.inc, line 1590 - Common functions used by both the drush and form interfaces.
Code
function _cache_set($cid, $data, $bin = 'default') {
return function_exists('cache_set') ? cache_set($cid, $data, $bin) : array();
}