A full GC every minute? That is because you removed the following options from the JAVA_OPTS that came with JBoss AS:
set JAVA_OPTS=%JAVA_OPTS% -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 By default, the rmi code calls System.gc() every minute. The above options delay that to once an hour. Actually, I'd set it for once a month! View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4233994#4233994 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4233994 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
