View Javadoc
1 package org.codehaus.nanning.test; 2 3 import java.util.LinkedList; 4 import java.util.List; 5 6 public class TestUtils { 7 public static void gc() { 8 List list = new LinkedList(); 9 10 Runtime runtime = Runtime.getRuntime(); 11 long totalMemory = runtime.totalMemory(); 12 while (totalMemory == runtime.totalMemory()) { 13 list.add("mongo bongo"); 14 if (list.size() % 400 == 0) { 15 System.gc(); 16 } 17 } 18 } 19 }

This page was automatically generated by Maven