| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.iailab.framework.common.service.impl.BaseServiceImpl; |
| | | import com.iailab.module.model.mcs.pre.dao.MmPredictMergeItemDao; |
| | | import com.iailab.module.model.mcs.pre.dao.MmPredictModelDao; |
| | | import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity; |
| | | import com.iailab.module.model.mcs.pre.service.MmPredictModelService; |
| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.UUID; |
| | | import java.util.concurrent.ConcurrentHashMap; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | |
| | | |
| | | @Autowired |
| | | private MmPredictModelDao mmPredictModelDao; |
| | | |
| | | private static Map<String, MmPredictModelEntity> modelEntityMap = new ConcurrentHashMap<>(); |
| | | |
| | | private static Map<String, MmPredictModelEntity> activeModelMap = new ConcurrentHashMap<>(); |
| | | |
| | | @Override |
| | | public void savePredictModel(MmPredictModelEntity predictModel) { |
| | | predictModel.setId(UUID.randomUUID().toString()); |
| | | mmPredictModelDao.insert(predictModel); |
| | | clearCache(); |
| | | } |
| | | |
| | | @Override |
| | | public void update(MmPredictModelEntity predictModel) { |
| | | this.updateById(predictModel); |
| | | clearCache(); |
| | | } |
| | | |
| | | @Override |
| | | public MmPredictModelEntity getInfoFromCatch(String id) { |
| | | if (!modelEntityMap.containsKey(id)) { |
| | | MmPredictModelEntity modelEntity = getInfo(id); |
| | | if (modelEntity != null) { |
| | | modelEntityMap.put(id, modelEntity); |
| | | } |
| | | } |
| | | return modelEntityMap.get(id); |
| | | } |
| | | |
| | | @Override |
| | | public void clearCache() { |
| | | modelEntityMap.clear(); |
| | | activeModelMap.clear(); |
| | | } |
| | | |
| | | @Override |
| | |
| | | QueryWrapper<MmPredictModelEntity> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.in("itemid", itemIds); |
| | | mmPredictModelDao.delete(queryWrapper); |
| | | clearCache(); |
| | | } |
| | | |
| | | public MmPredictModelEntity getByItemid(String itemid) { |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<MmPredictModelEntity> getActiveModelByItemId(String itemId) { |
| | | return mmPredictModelDao.getActiveModelByItemId(itemId); |
| | | public MmPredictModelEntity getActiveModelByItemId(String itemId) { |
| | | if (activeModelMap.containsKey(itemId)) { |
| | | return activeModelMap.get(itemId); |
| | | } |
| | | List<MmPredictModelEntity> list = mmPredictModelDao.getActiveModelByItemId(itemId); |
| | | if (CollectionUtils.isEmpty(list)) { |
| | | return null; |
| | | } |
| | | activeModelMap.put(itemId, list.get(0)); |
| | | return activeModelMap.get(itemId); |
| | | } |
| | | } |