top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

minimize garbage collection interruption in java server application code

0 votes
231 views

How do I minimize garbage collection interruption in my real time Java server application code?

posted Mar 16, 2013 by Salil Agrawal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

the best way to minimize the garbage collection interruption is , do not leave any un-referenced objects in your program. in other words, when you create objects in your program , after working with them kill
them by assigning null .

answer Mar 17, 2013 by anonymous
Similar Questions
+2 votes

I am looking for a free/open source tool to identify memory leaks in my JNI program.
I am using : java version "1.6.0_45", Java HotSpot(TM) 64-Bit Server.

Any suggestions?

+1 vote

I have a web application developed using Struts2. In my web application I have a link using which users can download a zip file. I need to create this zip file at run time based on some conditions. How can I do this in Struts2?

...