String s = "The quick brown fox jumped over the lazy dog";
Profiler prof = new Profiler ();
for (int i=0; i<COUNT; i++) {
sp.out ("testMultiKeyLoad_Key" + Integer.toString (i), s);
if (i % 100 == 0)
prof.checkPoint ("out " + i);
}
// prof.dump (System.err, "MultiKeyLoad out >");
prof = new Profiler ();
for (int i=0; i<COUNT; i++) {
assertTrue (s.equals (sp.in ("testMultiKeyLoad_Key" + Integer.toString (i))));