Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Save much information

Hi, community, I'm working on a project, where I have to save much information, these information I save  Json files, after i send these json files through fetch API, but when I full the queue, it shows an error (App msg queue full), I'd like your advices, What should I do ?

 

Best Answer
0 Votes
1 REPLY 1

That error message may not indicate that you've sent too much information. It may indicate that your code is too slow. Any code that ties up the watch for too long will get that error message. Try to save your data more frequently (so it doesn't take as long each time), or chain your saving function using something like setTimeout between invocations, so that the operating system gets a chance to process its system messages during the intervals between execution.

Peter McLennan
Gondwana Software
Best Answer
0 Votes