0
votes
1answer
24 views

Javascript memory analyser: What does it mean if a Htmldiv element shows up in the heapsnapshot after the page is navigated away from?

So I am running javascript memory analyser in visual studio for my windows store app . I see that one of the div elements that belongs to a page is showing up on the heap snapshot after we navigate ...
0
votes
0answers
61 views

Memory leak in my javascript app

I am new to javascript/html app development. I have page1 with a button when clicked takes me to page2. Every time I go to page1 to page2 and then navigate back to page1 there is a 10 MB increased in ...
0
votes
0answers
47 views

Why is this javascript a memory leak

Can anyone help me figure out why this is a memory leak, is this perhaps a circular reference, and what can I do to prevent it from leaking? //THIS FUNCTION FIRST EXPANDS THE IFRAME TO FILL ALL ...
2
votes
3answers
56 views

JavaScript memory leak caused by function scope?

Using the chrome development tools i recently found out, that my application which uses a modular concept leaves over some Module objects in memory even if they are not referenced directly by any ...
0
votes
0answers
28 views

Does checking for function exists prevent browser garbage collection from freeing memory?

I have JavaScript in file A which loads file B (through a jquery AJAX load) into element X. On success, file A calls resizewin (below) which checks if the function resizeContent exists (which was in ...
1
vote
2answers
66 views

How to clean memory of browser in javascript from objects and classes?

I making a quest game with three scenes. The player can move from scene to scene and go back. (like a well known classic quests: Neverhood,Machinarium,The Curse of Monkey Island) Each scene have it's ...
1
vote
1answer
78 views

Is there an HTML5 method for displaying a tiff image data already loaded into memory

I have a tiff image stored in memory (in a javascript variable). What is the javascript or html technique for displaying this image in the browser window? Is there a "drawimage" type of function?
0
votes
0answers
36 views

How can I delete objects from memory in JavaScript?

I am using EaselJS and Box2DWeb to create an arrow shooting game. Every time an arrow collides with another body, it dies, and I call this function: if(body.dead){ removeActor(body.GetUserData()) ...
1
vote
1answer
55 views

Is memory cleanup on a div automatic for the children?

I have an html div that has about 6 divs under it. When I remove a Child on that div will the other divs be unallocated or must I first remove them? the divs are dynamically created. var window = ...
0
votes
1answer
79 views

Node.js: Serious Memory Leak Bug in newer versions?

What's the problem? First I tought something is wrong with my node.js modules or codes because as I visited my pages the memory decreased after every visit and it was not released back. After hours ...
0
votes
0answers
28 views

Cpu profiling and memory usage for java script?

Can any one say how to profile and find the memory usage of the simple application. My program is , <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> ...
1
vote
0answers
86 views

PhantomJS WebPage memory consumption?

Is there a programmatic (since i want to do it automatically at runtime) way to see how much memory a webpage uses when running it through PhantomJs? I am also using casperjs if that could be ...
0
votes
1answer
79 views

Memory leak - Javascript/jquery and canvas

I got one serious problem, concerning a canvas carousel. I decided, as a first html/canvas/javascript approach, to try to make myself some picture carousel. You can find it here, on everypage of my ...
0
votes
1answer
79 views

Problems managing CommonJS modules

I am using Titanium Appcelerator to develop apps using JavaScript. They have suggested to use the CommonJS approach. A brief example on CommonJS can be found here. For the life of me, I cannot still ...
3
votes
2answers
52 views

For Javascript game engines, is re-using a global variable more or less efficient than making locals?

A lot of Javascript performance guides tend to emphasize two points: Stay within scope; looking up variables progressively through each scope is expensive. Don't abuse the garbage collector by ...
1
vote
1answer
175 views

javascript get cpu\gpu\memory information

I need to get any information about the CPU/GPU/memory.The number of cores, memory value, memory and cpu usage... I found a way to do this for IE:How to Use JavaScript to Find Hardware Information ...
0
votes
0answers
45 views

Keep UIWebView Webpage in memory when App is in background

I currently have an UIWebView with a webpage loaded where I get javascript events like "chat messages". My problem is that my UIWebView gets destroyed after my app is in the background for a few ...
2
votes
0answers
60 views

At what point does javascript allocate a memory slot for a variable(in OO context)?

I'm looking for a very specific answer to my question. The question is as per title, here's a sample case: function MyObject(){ this.value = null; //do we allocate a piece of memory of some sort ...
4
votes
1answer
74 views

if I close an iframe containing javascript code, will it free memory used on that iframe?

I have a doubt. I have an iframe id="ventana". it contains some html and javascript code (functions, event listeners and variables). If I close the iframe from the parent frame using ...
0
votes
1answer
44 views

Should I unbind event listener to prevent memory leaks?

Here is my code: // array of image data var images = [ { url: 'image.jpg' } ]; // function that loads image var loadImage = function(imageObject) { imageObject.img = $('<img ...
0
votes
0answers
14 views

How to release air stream.readBytes memory?

I a m currently working on a AIR Javascript project where I have to read 60 000 bytes array. I can clearly see the problem in the process monitor, memory is not release. Here it's what in my loop, ...
0
votes
1answer
38 views

Javascript application memory handling

i have the below JS: var z = function(){ return "string"; } var x = function(){ var y = new z(); var div = document.createElement('div'); div.innerHTML = y; ...
0
votes
0answers
31 views

Variable Persists Through Restart

So I'm making a web crawler in Nodejs using Cheerio and Request. I'd love advice on the code structure and whatnot but really I'm here because of an odd issue: The code updates and parses html every ...
0
votes
2answers
119 views

Memory usage with Node.js, Jsdom, HttpAgent

I have made a scrapping script that navigates through a blog in order to get all titles. Problem is that Node is keeping using more and more memory as the script runs (thousands of URLs), until 8 go ...
2
votes
1answer
149 views

Javascript closures and memory leak risks

Recetly I was looking for memory leaks in my javascript code. Ater finding some major leaks I starter to look for minor and found something that could be a potential leak - the "hoverIntent.js" ...
1
vote
1answer
207 views

Dynamically create and destroy a Three.js scene without leaking memory

Lets say we had a page with two buttons, create and destroy. When you click create the Three.js scene in this memory test below is dynamically added to the page and starts running. Clicking destroy ...
1
vote
1answer
80 views

How to get javascript objects size and count in browser memory

i know most of you will point me to the chrome profiler heap snapshot, but on empty page (no js no css just html>body) it shows 8mb heap size and 12 to 30 thousand objects depends on his mood, so it ...
0
votes
0answers
167 views

Phonegap app crashes after repeated page loads, but only on ICS

Okay, I've got this Android app written in PhoneGap. It's fairly big, but nothing unusual (displays information and pictures obtained from a web service, Google Maps on some pages). However, when I ...
8
votes
1answer
128 views

Memory consumption on an iteration script

I have a script written in PHP and the same script written in Javascript. It iterates a million times and on each time strips a string into an array and assigns the first array item into a new ...
0
votes
1answer
204 views

asp.net javascript memory leak in IE9 standards mode only

I'm experiencing a memory leak when using javascript to automatically refresh the page every X seconds. I have verified that this leak is not happening in Firefox or in Chrome, and its also not ...
1
vote
4answers
78 views

For Loop optimization in Javascript

So i have been taking a Computer science course that uses C+ to teach programming concepts with. today i learned a new concept that i was not sure applied to JS, in which there are system resources ...
8
votes
1answer
181 views

Why modifying global variable increases memory usage in Chrome

Recently I have been playing a little bit with optimization of javascript code to make HTML5 games, targeting especially mobile browsers. I started with comparing engines and gradually simplified ...
0
votes
0answers
106 views

Chrome crashes complete, when overflowing the memory

Why the heck is Chrome 23.0.1271.97 (still?) that vulnerable to a Memory Overflow, these two lines lead to a complete crash of Chrome for me, If I don't close the tab its running in, in time for (var ...
0
votes
2answers
69 views

What could be causing massive memory peaks in my javascript? [closed]

Upon running my code I get: Constantly peaking between 4 and 12MB multiple times a second. Here is the full thing. I've narrowed it down to be likely in the draw() function or the settarget() ...
2
votes
3answers
139 views

Do innerHTML create nodes in the DOM tree?

If I do this: document.getElementById("myDiv").innerHTML = "some_html_code"; will that create nodes in my DOM three as it would if I used appendChild()? Reason for asking is that I'm creating a ...
2
votes
1answer
188 views

addEventListener memory leak due to frames

I have a GreaseMonkey script that works on a site that uses frames as an integral part of its interface. This script leaks memory like a sieve, and I believe it is due to my use of addEventListener ...
0
votes
1answer
71 views

Deallocate javascript on uiwebview?

is there way to deallocate the javascript after used in uiwebview. what i understand was the iOS will execute the app when javascript didn't finished within 10 s and when memory get 10 MB limit. Can ...
1
vote
1answer
408 views

IE memory profilers for Javascript [duplicate]

Possible Duplicate: JavaScript Profiler in IE We have a web application targeting Internet Explorer 7, 8, 9 that apparently has an IE memory leak. We can see that memory grows and ...
7
votes
1answer
377 views

debugging node js garbage collection / memory problems with chrome

I'm attempting to get to the root problem of some memory leaks I'm having with a Node app (v 0.8.6). To help figure this out I'm using https://github.com/c4milo/node-webkit-agent. Because the app is ...
7
votes
3answers
1k views

Are the advantages of Typed Arrays in JavaScript is that they work the same or similar in C?

I've been playing around with Typed Arrays in JavaScript. var buffer = new ArrayBuffer(16); var int32View = new Int32Array(buffer); I imagine normal arrays ([1, 257, true]) in JavaScript have poor ...
0
votes
0answers
24 views

Html5 Audio space stores in heap or on Disk

When we make an audio or video req is the downloaded data( progressive downloaded) stored in the memory (heap/stack) or in disk space. I guess it depends on the browser but. I am faking streaming and ...
1
vote
1answer
54 views

Javascript Map dereference

If I have a map containing the ids of DOM elements and I want to de-reference an entry in the map, so the corresponding element can be picked up by garbage collector, what are the steps I should go ...
0
votes
4answers
141 views

Clearing objects from Javascript array [duplicate]

Possible Duplicate: how to empty an array in JavaScript Best way to deallocate an array of array in javascript I have an array of objects: var arr = [complexObj1, complexObj2]; If I ...
0
votes
2answers
49 views

Does reassigning the reference to a javascript array to another empty array free memory used by the original array?

So let's say you have an array: var array = [1, 2, 3, 4, 5, 6] and then you reassign the referrence to that array to a new empty array: array = []; Is that original array removed from memory now ...
0
votes
1answer
482 views

google maps js API v3: recreate map with no memory leak / move map object to different div

I'm making what amounts to a slideshow pane to show different pages that needs to have 0 memory leaks. I want to show a google map of the area, but the div the map attaches to will periodically be ...
3
votes
2answers
150 views

are JavaScript closures memory efficient?

I want to better understand the effects JavaScript closures have on memory: function fee(arg){ function figh(){ //some code fum(passOnSomeARG) } function fo(y){ //some ...
8
votes
5answers
213 views

Memory management of JavaScript Array [duplicate]

Possible Duplicate: Are Javascript arrays sparse? I am learning JavaScript at the moment and have been reading some simple introductions and tutorials. While looking at the Array object I ...
6
votes
1answer
230 views

how to find a memory leak and debug a jquery/javascript application?

I'm trying to degub a fairly large application written in jquery mobile and am struggling to pin down a suspected memory leak.  I have been criss-crossing through the app running all functions up and ...
1
vote
0answers
39 views

How can I improve the responsiveness of this FileReader?

How you I go about improving the responsiveness of this file reader I made? I created a simple animation to see how it effects the UI and it really blocks the UI quite substantially. I even tried ...
14
votes
4answers
925 views

If a DOM Element is removed, are its listeners also removed from memory?

If a DOM Element is removed, are its listeners removed from memory too?

1 2 3 4