Пример #1
0
 /**
  * Delete the concept cache for the given concept.
  *
  * @since 1.8
  * @param Title $concept
  */
 public function deleteConceptCache($concept)
 {
     wfProfileIn('SMWSQLStore3::deleteConceptCache (SMW)');
     $qe = new SMWSQLStore3QueryEngine($this, wfGetDB(DB_MASTER));
     $result = $qe->deleteConceptCache($concept);
     wfProfileOut('SMWSQLStore3::deleteConceptCache (SMW)');
     return $result;
 }
Пример #2
0
 /**
  * Delete the concept cache for the given concept.
  *
  * @since 1.8
  * @param Title $concept
  */
 public function deleteConceptCache($concept)
 {
     $qe = new SMWSQLStore3QueryEngine($this, wfGetDB(DB_MASTER));
     $result = $qe->deleteConceptCache($concept);
     return $result;
 }