[
https://issues.apache.org/jira/browse/CB-7660?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14287282#comment-14287282
]
Sebastian Riemer edited comment on CB-7660 at 1/22/15 12:28 PM:
----------------------------------------------------------------
I am also experiencing problems while downloading multiple files via
FileTransfer (0.4.8) on an IPad2. I am using cordova 4.1.2, and File (1.3.2).
Memory consumption rises continuously, eventually leading to a memory warning,
and further to the app crashing.
[EDIT] I've just tested the FileTransfer again with 1000 dummy (txt) files à
200KB.
While processing file list:
- CPU: 120-130%
- Memory: 60MB rising up to 89MB
- Network: 200KB/s
There is no crash, and Memory stays about the same til the end. However, after
all files were downloaded, I would like the Memory to decrease again? Memory
stays at 89MB afterwards.
Is there some way of freeing the Memory consumed during FileTransfer?
I'll continue testing ...
was (Author: sebastianriemer):
I am also experiencing problems while downloading multiple files via
FileTransfer (0.4.8) on an IPad2. I am using cordova 4.1.2, and File (1.3.2).
Memory consumption rises continuously, eventually leading to a memory warning,
and further to the app crashing.
I've just tested the FileTransfer again with 1000 dummy (txt) files à 200KB.
While processing file list:
- CPU: 120-130%
- Memory: 60MB rising up to 89MB
- Network: 200KB/s
There is no crash, and Memory stays about the same til the end. However, after
all files were downloaded, I would like the Memory to decrease again? Memory
stays at 89MB afterwards.
Is there some way of freeing the Memory consumed during FileTransfer?
I'll continue testing ...
> Cordova iOS File-Transfer download memory leaks
> -----------------------------------------------
>
> Key: CB-7660
> URL: https://issues.apache.org/jira/browse/CB-7660
> Project: Apache Cordova
> Issue Type: Bug
> Components: Plugin File Transfer
> Affects Versions: 3.5.0
> Environment: iOS 7.0.3 on iPad2 - Cordova 3.5
> Reporter: Jordi Valls Carbonell
> Assignee: Shazron Abdullah
> Attachments: LargeFiles.png, SmallFiles.png
>
>
> File-Transfer memory leaks downloading files, no memory is released for each
> file downloaded, finally i got "Memory Warning".
> To test add a button and call "testDownload" function every time console
> confirmation message is displayed ("DOWNLOADED OK")
> {code}
> function win(entry)
> {
> console.log("DOWNLOADED OK");
> }
> function fail(error)
> {
> console.log("ERROR!");
> console.log(error.code);
> }
> function testDownload
> {
> var url =
> "http://upload.wikimedia.org/wikipedia/commons/5/5b/Ultraviolet_image_of_the_Cygnus_Loop_Nebula_crop.jpg";
> var filename = "filename.jpg";
> var uri = encodeURI(url);
> window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSystem) {
> fileSystem.root.getFile(filename, {create: true, exclusive: false},
> function(fileEntry) {
> var localPath = fileEntry.toURL();
> var ft = new FileTransfer();
> ft.download(uri,localPath,win,fail,false);
> },function(error){console.log("errore 1: " + error.code);});
> },function(error){console.log("errore 2: " + error.code);});
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]