XAMPP 上的 Cron(Windows)
我正在使用 xampp 在本地开发一个网站。 我想配置cron,所以开发环境与生产环境相同。 不过我的系统是windows vista。 有什么办法可以做到这一点,还是我被迫接受我的开发和生产环境将是分叉的?
I am developing a site locally using xampp. I would like to configure cron, so the dev environment is the same as the production environment. However, my system is windows vista. Is there any way to do this, or am I forced to accept that my dev and production environments will be forks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我强烈建议您研究一下 Cygwin。 当我想在 Windows 上使用 linux/unix 实用程序时,我就使用了它。 它也支持 Cron。
雅各布
I would highly recommend looking into Cygwin. I was using that when I wanted linux/unix utilities on Windows. It supports Cron as well.
Jacob
顺便说一句,这是一个非常好的问题......有很多很好的计划任务应用程序。 我喜欢的 1 个是 Visual Cron,位于 http://www.visualcron.com/
运行计划任务,对于 Web 服务器/Web 应用程序来说这是一件非常困难的事情...因为它们必须每隔 x 秒或分钟检查一次以查看是否需要完成任务,这可能会占用 Web 服务器/应用程序的 CPU 周期。
这就是为什么我更喜欢使用基于操作系统的任务调度程序或操作系统任务调度软件,我相信性能更好。
我学到的一个技巧是使用 php 的 -f 命令创建计划任务,而无需打开浏览器窗口,然后它就可以运行任务...
在 Windows 系统上,唯一的其他方法是打开 ie/firefox/opera 等运行您的基于网络的任务..
祝您好运!
Btw this is a really good question...there are a lot of good scheduled task apps out there. The 1 I liked is Visual Cron at http://www.visualcron.com/
Running a scheduled task, is a very tough thing for web server/web apps to do...Because they have to check every x seconds or minutes to see if a task needs to be done, which can suck up cpu cycles for your web server/apps.
Which is why i prefer using an os based task scheduler or os task scheduling software, better performance I believe.
One trick that I had learned, was using php's -f command to create scheduled tasks without having to open a browser window, then it can run tasks...
On window's systems the only other way was opening up ie/firefox/opera whatever to run your web-based task..
good luck!
您可以创建一个 Windows 计划任务来运行 cron.php(或在浏览器中调用它)。
You could create a windows scheduled task to run cron.php (or call it in the browser).