static void withDBLock(Runnable r) { mainConcepts.lock.lock(); try { r.run(); } finally { mainConcepts.lock.unlock(); } }