421422423424425426427428429430431
if (queryCacheSize > 0) { if (queryCache == null) { queryCache = SmallLRUCache.newInstance(queryCacheSize); } else { command = queryCache.get(sql); if (command != null && command.canReuse()) { command.reuse(); return command; } } }