|
@@ -559,6 +559,7 @@ public class VideoAdThompsonScorerV2 {
|
|
|
public List<AdRankItem> thompsonScorerByExp672(ScoreParam param, List<AdPlatformCreativeDTO> adIdList) {
|
|
|
String cidRedisKey = exp672Param.getOrDefault("cidActionRedisKey", redisCidActionKeyV1);
|
|
|
String vidCidRedisKey = exp672Param.getOrDefault("vidCidActionRedisKey", redisCidVidActionKeyV1);
|
|
|
+ double viewThreshold = Double.parseDouble(exp672Param.getOrDefault("viewThreshold", "7000"));
|
|
|
|
|
|
|
|
|
Map<Long, CreativeStatistic> paramCidRedisCache = this.batchFindCreativeRedisCache(cidRedisKey, adIdList);
|
|
@@ -577,7 +578,6 @@ public class VideoAdThompsonScorerV2 {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- double viewThreshold = Double.parseDouble(exp672Param.getOrDefault("viewThreshold", "7000"));
|
|
|
List<AdRankItem> result = new ArrayList<>(adIdList.size());
|
|
|
for (AdPlatformCreativeDTO dto : adIdList) {
|
|
|
Map<String, Object> ext = new HashMap<>();
|