Bladeren bron

update exp code

丁云鹏 3 maanden geleden
bovenliggende
commit
e2c203a5c3

+ 0 - 1
recommend-server-service/src/main/java/com/tzld/piaoquan/recommend/server/model/RecommendParam.java

@@ -28,7 +28,6 @@ public class RecommendParam {
     private String hRuleKey;
 
     private int flowPoolId;
-    private int lastDigit;
     private String flowPoolAbtestGroup;
     private String rankKeyPrefix;
     private int appType;

+ 0 - 4
recommend-server-service/src/main/java/com/tzld/piaoquan/recommend/server/service/RecommendService.java

@@ -390,9 +390,6 @@ public class RecommendService {
                 param.setFlowPoolAbtestGroup(entry.getKey());
             }
         }
-        // @desc 新的流量池分发实验组划分,每个尾号不同策略分组。 @time 20240318 @author 张博
-        int lastDigit = RandomUtils.nextInt(0, 10);
-        param.setLastDigit(lastDigit);
 
         // 风险过滤
         if (riskVideoFilterSwitch) {
@@ -474,7 +471,6 @@ public class RecommendService {
 
         recallParam.setVideoId(param.getVideoId());
         recallParam.setFlowPoolAbtestGroup(param.getFlowPoolAbtestGroup());
-        recallParam.setLastDigit(param.getLastDigit());
 
         String provinceCode = StringUtils.isNotBlank(param.getProvinceCode())
                 ? param.getProvinceCode()

+ 0 - 1
recommend-server-service/src/main/java/com/tzld/piaoquan/recommend/server/service/recall/RecallParam.java

@@ -26,7 +26,6 @@ public class RecallParam {
     private String abCode;
     private int size;
     private String flowPoolAbtestGroup;
-    private int lastDigit;
     private Long videoId;
     private String uid;
     private boolean specialRecommend;