Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand this general advice given against the use of synchronous ajax calls, because the synchronous calls block the UI rendering.

The other reason generally given is memory leak isssues with synchronous AJAX.

From the MDN docs -

Note: You shouldn't use synchronous XMLHttpRequests because, due to the inherently asynchronous nature of networking, there are various ways memory and events can leak when using synchronous requests. The only exception is that synchronous requests work well inside Workers.

How synchronous calls could cause memory leaks?

I am looking for a practical example. Any pointers to any literature on this topic would be great.

share|improve this question
Did you try google first? javascript.info/tutorial/… – Shmiddty Jan 16 at 18:17
@Shmiddty - I googled like days for now, Yes I saw the page you are referring to , but the explanation seems to be about older versions of IE. (IE < 9) – johnbk Jan 16 at 18:21
@Shmiddty - it is specific to IE and it is not talking about 'Synchronous' AJAX requests. – johnbk Jan 16 at 18:30
2  
Is it possible that the Note: is also specific to IE? – Kevin B Jan 16 at 18:39
@Kevin B - exactly, I could not find any definitive answers. Note is specific to 'Synchronous' calls. – johnbk Jan 17 at 4:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.