118119120121122123124125126127128
public void testWriteLock() throws Exception { final QueryCache qc = emf.getConfiguration().getDataCacheManagerInstance().getSystemQueryCache(); Thread t2 = new Thread() { public void run() { qc.writeLock(); qc.writeUnlock(); } }; t2.start(); t2.join(5000);
115116117118119120121122123124125
7576777879808182838485