有没有办法知道 Rails 应用程序已从 rake 命令启动?

发布于 2024-09-30 09:39:56 字数 117 浏览 1 评论 0原文

我正在 Rails 初始化程序中执行大量缓存任务。 它们对网站很有用,但当我启动 rake 任务时绝对无用且耗时。

Rails 有没有办法知道应用程序何时从 rake 命令启动?

谢谢

I'm doing a bunch of caching tasks in my rails initializers.
They're useful for the website, but absolutely useless and time consuming when I launch rake tasks.

Is there a way in rails to know when the app has been launched from a rake command?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Saygoodbye 2024-10-07 09:39:57

我想另一个选择是询问您是否可以判断应用程序是否已作为网站启动,然后只运行初始化程序。

在这种情况下,您应该能够在运行应用程序的任何 Web 服务器中设置环境变量,然后您就可以在设置环境变量时触发初始化程序。像这样的东西:

if ENV['INITIALIZE_BLAH']
   # Do your website only initialization
end

I guess the other option is to ask whether you can tell whether the app has been launched as a website and only run the initializers then.

In that case you should be able to set environment variables in whichever web server you are running the application and you may then be able to trigger your initializer when the environment variable is set. Something like:

if ENV['INITIALIZE_BLAH']
   # Do your website only initialization
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文