/**
  * Clear database cache for this instance.
  */
 protected function clearCache()
 {
     if ($this->shouldCache("read") && !empty($this->arguments)) {
         LudoDBCache::clearBy(get_class($this) . "_" . implode("_", $this->arguments));
     }
 }