117118119120121122123124125126127
*/ 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);
114115116117118119120121122123124
7475767778798081828384