int oc = (int) OBJCOUNT;
ObjectCache cache = ObjectCacheTest.cache;
long start = System.currentTimeMillis();
if (RELEASE_RATE == 8)
for (int i = 0; i < oc; ++i) {
cache.release(cache.get());
}
else if (RELEASE_RATE == 0)
for (int i = 0; i < oc; ++i) {
cache.get();
}