I'm using RestKit to POST large files and it is working well enough that it is using up about as much bandwidth as is available. How do I limit the data rate? I am sending one file at a time so I can't reduce concurrency any further.
I know an easy way -- Wait between sending files. However, the files are large so there are long periods where everything else gets starved for bandwidth. Any ideas on how to limit the bandwidth consumed while uploading a single file? Thanks!