Home >Backend Development >PHP Tutorial >crontab执行后台任务如何避免全表扫描

crontab执行后台任务如何避免全表扫描

WBOY
WBOYOriginal
2016-06-13 12:22:111018browse

crontab执行后台任务怎么避免全表扫描
补充: 我有一个任务表,task表,表中有字段,预期完成时间(complete_time),任务反馈内容(feedback)。
         现在有一需求,定时扫描表,如果任务没有反馈信息并且距离预期完成时间有一天、一个小时、一分钟的时候,向任务执行人发送一个消息。
我现在的做法是,crontab执行任务,一个小时扫描一次表,只是觉得每次都要全表扫,效率不高,有什么办法不需要进行全表吗?
在线等。
------解决思路----------------------
你用一个容器记录下上次扫描后的位置
下次就从这个位置开始扫描

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn