English 中文(简体)
由于对制度的限制,在戒律中使用
原标题:Pause in a cron script due to restrictions on a system

我有一份挂图,记录到另一个服务器中,获取信息,在我的台上更新我的桌子,在连接结束时送我电子邮件。

我现在正在讨论的问题是,他们已经实行限制,我只能每60秒更新20个牢房。

我看了睡觉的功能,有人建议制造ches沟,等等。 如何以最佳方式处理这一问题,并找到一个好的解决方案。 我需要继续读写,直到该表的所有段落都得到更新。

问题回答

睡觉确实是你通常如何做的事。 在PHP,sleep 只能睡觉到全程秒钟,因此使用<条码>。 如果你采用第二种方法。

如果你想假设你的所有询问都立即执行,而且你只是重新处理,那么每60秒钟就很容易限制到20分:每行3次。 如果您的问询直截了当,你就会把每秒钟的加起来。

如果你愿意,你可以把插上三秒钟,就可保证每60秒20秒钟,只要每排不到三秒钟。 如果时间更长,每60秒钟的死亡人数就低于20人。 我建议,这确实值得一提——如果数据库已经超负荷运转,就会使你的插入者的工作变得更加困难。

如果你不采用自动通勤的方式,你就希望作出相当频繁的承诺——通常认为不必要地进行未经同意的改变。

最后,如果你在较长时期内平均维持20列60秒(而你的输入数据是假的),那么你就开始转向一个象征性的过滤器: 每3秒(60秒20秒),就在“桶”中添加“信号”。 桶装多达20条 to。 每当你插入一行时,你就会从桶子中删除一只ken子——如果桶是空的,就等到头。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签