【代码优化】PAY:移除 PayClient 缓存,减少复杂性,性能足够(非高频读取)

This commit is contained in:
YunaiV 2024-07-24 22:54:57 +08:00
parent 844bdd7380
commit 762c19ecec
3 changed files with 11 additions and 47 deletions

View File

@ -14,22 +14,17 @@ import cn.iocoder.yudao.module.pay.convert.channel.PayChannelConvert;
import cn.iocoder.yudao.module.pay.dal.dataobject.channel.PayChannelDO; import cn.iocoder.yudao.module.pay.dal.dataobject.channel.PayChannelDO;
import cn.iocoder.yudao.module.pay.dal.mysql.channel.PayChannelMapper; import cn.iocoder.yudao.module.pay.dal.mysql.channel.PayChannelMapper;
import cn.iocoder.yudao.module.pay.framework.pay.core.WalletPayClient; import cn.iocoder.yudao.module.pay.framework.pay.core.WalletPayClient;
import com.google.common.cache.CacheLoader; import jakarta.annotation.PostConstruct;
import com.google.common.cache.LoadingCache; import jakarta.annotation.Resource;
import lombok.Getter; import jakarta.validation.Validator;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import jakarta.annotation.PostConstruct;
import jakarta.annotation.Resource;
import jakarta.validation.Validator;
import java.time.Duration;
import java.util.Collection; import java.util.Collection;
import java.util.List; import java.util.List;
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
import static cn.iocoder.yudao.framework.common.util.cache.CacheUtils.buildAsyncReloadingCache;
import static cn.iocoder.yudao.module.pay.enums.ErrorCodeConstants.*; import static cn.iocoder.yudao.module.pay.enums.ErrorCodeConstants.*;
/** /**
@ -42,25 +37,6 @@ import static cn.iocoder.yudao.module.pay.enums.ErrorCodeConstants.*;
@Validated @Validated
public class PayChannelServiceImpl implements PayChannelService { public class PayChannelServiceImpl implements PayChannelService {
/**
* {@link PayClient} 缓存通过它异步清空 smsClientFactory
*/
@Getter
private final LoadingCache<Long, PayClient> clientCache = buildAsyncReloadingCache(Duration.ofSeconds(10L),
new CacheLoader<Long, PayClient>() {
@Override
public PayClient load(Long id) {
// 查询然后尝试清空
PayChannelDO channel = payChannelMapper.selectById(id);
if (channel != null) {
payClientFactory.createOrUpdatePayClient(channel.getId(), channel.getCode(), channel.getConfig());
}
return payClientFactory.getPayClient(id);
}
});
@Resource @Resource
private PayClientFactory payClientFactory; private PayClientFactory payClientFactory;
@ -102,9 +78,6 @@ public class PayChannelServiceImpl implements PayChannelService {
PayChannelDO channel = PayChannelConvert.INSTANCE.convert(updateReqVO) PayChannelDO channel = PayChannelConvert.INSTANCE.convert(updateReqVO)
.setConfig(parseConfig(dbChannel.getCode(), updateReqVO.getConfig())); .setConfig(parseConfig(dbChannel.getCode(), updateReqVO.getConfig()));
payChannelMapper.updateById(channel); payChannelMapper.updateById(channel);
// 清空缓存
clearCache(channel.getId());
} }
/** /**
@ -135,18 +108,6 @@ public class PayChannelServiceImpl implements PayChannelService {
// 删除 // 删除
payChannelMapper.deleteById(id); payChannelMapper.deleteById(id);
// 清空缓存
clearCache(id);
}
/**
* 删除缓存
*
* @param id 渠道编号
*/
private void clearCache(Long id) {
clientCache.invalidate(id);
} }
private PayChannelDO validateChannelExists(Long id) { private PayChannelDO validateChannelExists(Long id) {
@ -202,7 +163,8 @@ public class PayChannelServiceImpl implements PayChannelService {
@Override @Override
public PayClient getPayClient(Long id) { public PayClient getPayClient(Long id) {
return clientCache.getUnchecked(id); PayChannelDO channel = validPayChannel(id);
return payClientFactory.createOrUpdatePayClient(id, channel.getCode(), channel.getConfig());
} }
} }

View File

@ -23,8 +23,9 @@ public interface PayClientFactory {
* @param channelId 渠道编号 * @param channelId 渠道编号
* @param channelCode 渠道编码 * @param channelCode 渠道编码
* @param config 支付配置 * @param config 支付配置
* @return 支付客户端
*/ */
<Config extends PayClientConfig> void createOrUpdatePayClient(Long channelId, String channelCode, <Config extends PayClientConfig> PayClient createOrUpdatePayClient(Long channelId, String channelCode,
Config config); Config config);
/** /**

View File

@ -71,7 +71,7 @@ public class PayClientFactoryImpl implements PayClientFactory {
@Override @Override
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public <Config extends PayClientConfig> void createOrUpdatePayClient(Long channelId, String channelCode, public <Config extends PayClientConfig> PayClient createOrUpdatePayClient(Long channelId, String channelCode,
Config config) { Config config) {
AbstractPayClient<Config> client = (AbstractPayClient<Config>) clients.get(channelId); AbstractPayClient<Config> client = (AbstractPayClient<Config>) clients.get(channelId);
if (client == null) { if (client == null) {
@ -81,6 +81,7 @@ public class PayClientFactoryImpl implements PayClientFactory {
} else { } else {
client.refresh(config); client.refresh(config);
} }
return client;
} }
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")