Friday, July 27

Google search Tips



 1.      filetype:  For searching for a specific file type only.

E.g.:  Search for ppt files           
           
computer networks filetype:ppt


2.      cache:  This is to load sites quickly.

E.g.:
           
cache:http://www.thehindu.com


3.      movie:  It shows all information regarding the movie.

E.g.:
           
movie:Dark Knight


4.      site:  To search within a site domain

E.g.:
           
entrance result site:gov.in


5.      phonebook:  To get details of a person using phone number

E.g.:
           
phonebook:28576300


6.      “ ”    For searching for an exact phrase

E.g.:
           
how to change tyre


7.        -   To exclude a particular word in the search

E.g.:  To exclude all search relating to cricket match

cricket -game -score

Thursday, July 5

Fix Memory Leak in Java


Fix Memory Leak in Java

Actions to prevent memory leak:

  1. When a reference variable is no longer in use, assign null value to it.
  2. Close DataInputStreams and JDBC Connections.
  3. Shutdown the threads after completion.
  4. Restrict using static classes and methods.
  5. Put less data on Sessions.
  6. Invalidate Sessions.
  7. Set short duration for timeout of sessions.
  8. Avoid using String for concatenation instead use StringBuffer.

How do we know memory leak is happening?

Getting OutOfMemoryError (OOM) is a sign of possible memory leak. The other way is by checking the used JVM heap size. If the heap size is rising with time then clearly you have memory leak.

memory leak java heapdump graph


Debugging memory leak

  • In Tomcat, open Catalina.bat file, set CATALINA_OPTS with XX:+HeapDumpOnOutOfMemoryError
set CATALINA_OPTS=%CATALINA_OPTS% -XX:+HeapDumpOnOutOfMemoryError


  • Now a heap dump is written on the first Out Of Memory Error into %CATALINA_HOME%\bin as java_pid<pid>.hprof
memory leak java heapdump file


  • Or for On-demand, if you are using Java6, then use jmap.exe -dump:format=b,file=HeapDump.hprof  <pid>  
memory leak java jmap