{
long n_start = System.currentTimeMillis();
for ( int n = 0; n < num; n++ )
{
IElementAttributes attrp = cache_control.getDefaultElementAttributes();
ElementEventHandlerMockImpl hand = new ElementEventHandlerMockImpl();
attrp.addElementEventHandler( hand );
cache_control.put( "key" + n, "data" + n + " put from ta = junk", attrp );
}
long n_end = System.currentTimeMillis();
p( "---put " + num + " in " + String.valueOf( n_end - n_start ) + " millis ---" );