You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a physical android device (Node 9) to test. The NS version is 6.2.1.
When I load the contacts it takes over 30 seconds to load 827 contacts. Is this normal? Is there a way to speed things up?
Here is my code:
function getContacts() {
//get the contacts
console.log('start', new Date());
var contactFields = ["name", "phoneNumbers"];
contacts.getAllContacts(contactFields).then(
function (args) {
console.log('end', new Date());
},
function (err) {
console.log("Error: " + err);
}
);
}
@dpdragnev I found that converting photos to and from base64 string to allow transfer of data between worker and main thread is the main time consuming issue. By excluding the photo from the contactFields (and rather get that later, per contact) is much faster.
I think this is a limitation of the nativescript and workers, that all data has to be serializable to transfer between worker and main thread.
I see that you're not providing photo in your example code, but that's what I changed.
I am using a physical android device (Node 9) to test. The NS version is 6.2.1.
When I load the contacts it takes over 30 seconds to load 827 contacts. Is this normal? Is there a way to speed things up?
Here is my code:
Here is my package.json:
Thanks
The text was updated successfully, but these errors were encountered: