Consuming too many server resources (if it leaves a Keep-Alive connection dangling, until the time out, is the timeout lower then your retry?)
Forcing the kernel to keep whatever you're requesting every minute in disk cache memory
Are you going to exhaust the server/clients tcp connections
In general you're forcing it to keep whatever you're transferring in memory, and you can potentially exhaust resources if you're not paying attention to how it's working, or if a dynamic page you're requesting leaks resources, etc..
In general you're forcing it to keep whatever you're transferring in memory, and you can potentially exhaust resources if you're not paying attention to how it's working, or if a dynamic page you're requesting leaks resources, etc..