You are here

function alchemy_cache_clear in Alchemy 7

@todo Please document this function.

See also

http://drupal.org/node/1354

1 call to alchemy_cache_clear()
alchemy_cache_set in ./alchemy.module
@todo Please document this function.

File

./alchemy.module, line 322
$Id: alchemy.module,v 1.1.2.3 2010/11/17 21:17:48 tomdude48 Exp $

Code

function alchemy_cache_clear($cid, $command) {
  if (is_numeric($cid)) {
    $query = db_delete('alchemy_cache')
      ->condition('nid', $cid)
      ->condition('command', $command);
    $query
      ->execute();
  }
  return TRUE;
}