0

Drupal 8. 如何在凌晨 12 点清除缓存?或其他特定时间,例如下午 2 点、晚上 7 点等。

4

2 回答 2

0

您可以在 Drupal 之外使用服务器上的 cron 作业来调用drush cr您的站点。

如果您对 cron 不熟悉,请参考这里:https ://opensource.com/article/17/11/how-use-cron-linux

例子:

1. 编辑 crontab:

crontab -e

2.添加以下行:

0 0 * * * cd <path_to_your_document_root> && drush cr

于 2021-01-14T04:24:18.387 回答
0

还可以查看 CacheFlush 模块: https ://www.drupal.org/project/cacheflush/

于 2021-01-20T12:50:45.703 回答