...
|
...
|
@@ -19,7 +19,7 @@ import java.util.concurrent.TimeUnit; |
|
|
@Component
|
|
|
class RecallConfigProductService {
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(RecallConfigProductService.class);
|
|
|
private static final Logger RECALL_NEW_LOGGER = LoggerFactory.getLogger("RECALL");
|
|
|
|
|
|
@Autowired
|
|
|
private CsRecallConfigProductIndexBaseService csRecallConfigProductIndexBaseService;
|
...
|
...
|
@@ -56,9 +56,9 @@ class RecallConfigProductService { |
|
|
tempCache.get(configKey).put(pageId, configSknCount);
|
|
|
}
|
|
|
recallSknCountConfigCache = tempCache;
|
|
|
logger.info("loadRecallSknCountConfigCache success,recallSknCountConfigCache size is[{}]", recallSknCountConfigCache.size());
|
|
|
RECALL_NEW_LOGGER.info("loadRecallSknCountConfigCache success,recallSknCountConfigCache size is[{}]", recallSknCountConfigCache.size());
|
|
|
} catch (Exception e) {
|
|
|
logger.error("loadRecallSknCountConfigCache error,exception is:" + e.getMessage(), e);
|
|
|
RECALL_NEW_LOGGER.error("loadRecallSknCountConfigCache error,exception is:" + e.getMessage(), e);
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|