Shaun Kester

Results 2 comments of Shaun Kester

@elvisgraho We removed the cached response to improve the memory usage when transferring a lot of files. ```objc CDVFileTransferDelegate* currentDelegate = command.activeTransfers[objectId]; [[NSURLCache sharedURLCache] removeCachedResponseForRequest:currentDelegate.connection.currentRequest]; ```

@nunohorta Like @elvisgraho I control the number of file transfers that are sent to the cordova plugin. My preferred library is the [queue flow control in AsyncJS](https://caolan.github.io/async/v3/docs.html#queue). This lets us...