|
@@ -573,6 +573,11 @@ func (s *Spider) DownloadDetailItem(p interface{}, num *int) {
|
|
|
hashHref := HexText(href)
|
|
|
id := "" //记录spider_listdata中保存的数据id,便于下载成功后更新状态
|
|
|
if util.Config.Modal == 1 { //除7000、7500、7700节点外所有节点只采集列表页信息
|
|
|
+ isExist := util.RedisClusterExists(hashHref) //全量信息中已采集
|
|
|
+ if isExist {
|
|
|
+ *num++ //已采集
|
|
|
+ return
|
|
|
+ }
|
|
|
SaveHighListPageData(paramdata, s.SCode, hashHref, num)
|
|
|
return
|
|
|
} else {
|