perf[orm]: concurrent collection check

This commit is contained in:
godotg
2024-06-24 17:36:44 +08:00
parent 6d1fc56a85
commit e82f3b3a1c
@@ -553,7 +553,7 @@ public class OrmManager implements IOrmManager {
}
if (hasUnsafeCollection) {
logger.warn("class[{}] field:[{}] is not concurrent collection, using CopyOnWriteArrayList or ConcurrentHashmap instead", clazz.getSimpleName(), field.getName());
logger.warn("class[{}] field:[{}] is not concurrent collection, use concurrent collection instead or not use @EntityCache annotation", clazz.getSimpleName(), field.getName());
}
}
}