s_logger.debug("Reading Redis LKV values for normalizationRuleSetId:{} globalPrefix:{} dataFieldBlackList:{} schemeBlackList:{}",
new Object[] {getNormalizationRuleSetId(), getGlobalPrefix(), _dataFieldBlackList.keySet(), _schemeBlackList.keySet()});
List<ExternalId> allSecurities = getAllSecurities();
OperationTimer timer = new OperationTimer(s_logger, "Reading LKV for {} securities", allSecurities.size());
Map<ExternalId, Map<String, String>> result = getLastKnownValues(allSecurities);
timer.finished();
return result;
}
@SuppressWarnings("unchecked")
public Map<ExternalId, Map<String, String>> getLastKnownValues(final List<ExternalId> securities) {