Hacker News new | ask | show | jobs
by starttoaster 804 days ago
Doesn't seem like it should be all that complex to me assuming the crawler is written in a common programming language. It's a pretty common coding pattern for functions that make HTTP requests to set a timeout for requests made by your HTTP client. I believe the stdlib HTTP library in the language I usually write in actually sets a default timeout if I forget to set one.
1 comments

Those are usually connection and no-data timeouts. A total time limit is in my experience less common.