please include function aiConceptsMap_cached. static AIConcept createAIConcept_listed(S globalID, S name, S comment, S universe) { RemoteDB db = new RemoteDB(aiConceptsProgram()); O[] params = { +globalID, +name, +comment, originatingUniverse := universe, touched := now() }; db.xnew("AIConcept", params); db.close(); AIConcept c = cnew(AIConcept, params); synchronized(aiConceptsMap_cached_cache) { put(aiConceptsMap_cached_cache!, c.globalID, c); } ret c; }