我有一种困惑。 我有一个cron文件(php),它可以处理大约有100万行的数据库上的不同选择/更新/删除查询。什么是确保所有查询都能正常运行的有效方法。服务器也是一个共享服务器,最长PHP执行时间为30秒。
答案 0 :(得分:0)
以块的形式划分查询并使用参数调用cron函数以获取限制。
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if (segue.identifier == "SegueIdentifier") {
let destination = segue.destinationViewController as! DestinationViewControllerClass
destination.variable = self.variable
}
}
并且task.php?f=0
task.php?f=1
task.php?f=2
[...]
param设置了查询的限制。也编写日志文件。