Setup:
ActiveMQ with topic called testmsgChannel.
I send to that topic about 6000 message per hr with avg message size under 1k.
Using the smartclient version 6.5,
In the client, I subscribed as:
Messaging.subscribe("testmsgChannel", "messaging_routine(data)");
with empty messaging_routine message as,
function messaging_routine(data) {
}
----
I check using task manager to see the mem consumption on iexplore.exe (v7). The memory is slowly leaking from 71k to 79k in about 15min and it keeps going up. Anyone have any idea?
ActiveMQ with topic called testmsgChannel.
I send to that topic about 6000 message per hr with avg message size under 1k.
Using the smartclient version 6.5,
In the client, I subscribed as:
Messaging.subscribe("testmsgChannel", "messaging_routine(data)");
with empty messaging_routine message as,
function messaging_routine(data) {
}
----
I check using task manager to see the mem consumption on iexplore.exe (v7). The memory is slowly leaking from 71k to 79k in about 15min and it keeps going up. Anyone have any idea?
Comment