IPProxy icon indicating copy to clipboard operation
IPProxy copied to clipboard

Go爬取大量代理IP,存储于MongoDB,api接口提供IP

Results 1 IPProxy issues
Sort by recently updated
recently updated
newest added

func (p *ProxySchedule) Start() error {} 这个方法里面的 func (s *Scheduler) Every(interval interface{}) *Scheduler 不兼容int64,建议改成: 1.interval := viper.GetInt("schedule.interval") 2._, err := p.s.Every(interval*len(p.spiders)).Minute().Do(check.CheckIP)