We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
В админке битрикса есть возможность чистить кеш в зависимости от его типа.
В ядре это выглядит примерно так:
if($_REQUEST["cachetype"] == "menu") { $GLOBALS["CACHE_MANAGER"]->CleanDir("menu"); CBitrixComponent::clearComponentCache("bitrix:menu"); } elseif($_REQUEST["cachetype"] == "managed") { $GLOBALS["CACHE_MANAGER"]->CleanAll(); $GLOBALS["stackCacheManager"]->CleanAll(); } elseif($_REQUEST["cachetype"] == "html") { $staticHtmlCache = \Bitrix\Main\Data\StaticHtmlCache::getInstance(); $staticHtmlCache->deleteAll(); } elseif($_REQUEST["cachetype"] == "all") { BXClearCache(true); $GLOBALS["CACHE_MANAGER"]->CleanAll(); $GLOBALS["stackCacheManager"]->CleanAll(); $staticHtmlCache = \Bitrix\Main\Data\StaticHtmlCache::getInstance(); $staticHtmlCache->deleteAll(); }
Можно встроить этот механизм в команду очистки кеша с помощью дополнительных параметров:
jedi cache:clear --menu jedi cache:clear --managed jedi cache:clear --html jedi cache:clear --all jedi cache:clear #Эквивалентной --all
или дополнительного неймспейса:
jedi cache:clear:menu jedi cache:clear:managed jedi cache:clear:html jedi cache:clear:all
С параметрами мне вариант больше нравится )
The text was updated successfully, but these errors were encountered:
+1 за опции к существующей команде.
Sorry, something went wrong.
No branches or pull requests
В админке битрикса есть возможность чистить кеш в зависимости от его типа.
В ядре это выглядит примерно так:
Можно встроить этот механизм в команду очистки кеша с помощью дополнительных параметров:
или дополнительного неймспейса:
С параметрами мне вариант больше нравится )
The text was updated successfully, but these errors were encountered: