/**
  * Like ParserCache::getOptionsKey() with stable-pcache instead of pcache
  * @param $article Article
  * @return mixed|string
  */
 protected function getOptionsKey($article)
 {
     $key = parent::getOptionsKey($article);
     // call super!
     return str_replace(':pcache:', ':stable-pcache:', $key);
 }