• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/orm/entity.php
  • Класс: BitrixMainORMEntity
  • Вызов: Entity::cleanCache
public function cleanCache()
{
	if($this->getCacheTtl(100) > 0)
	{
		//cache might be disabled in .settings.php via *_max_ttl = 0 option
		$cache = MainApplication::getInstance()->getManagedCache();
		$cache->cleanDir($this->getCacheDir());
	}
}