Daniel
Daniel
I try to configure tcp with ssl, please see the following configuration: nginx.conf tcp { upstream cluster { server localhost:8883; server localhost:8884; check interval=3000 rise=2 fall=5 timeout=1000; } server {...
如果设置为 SetAsync(), 必须在每个方法最后调用logger.Flush(). 一般来说,为了性能,最好是设置SetAsync(), 但在每个方法最后调用 logger.Flush(), 这种方式太别扭了。这个如果能改成类似自动批处理的方式,而不用显示的调用,那就比较好了。
Hi, 你好! 当我在运行你的示例代码的时候,发现一个问题,请看下面代码: sample-consumer module: public class MultiDsTransferServiceImpl implements ITransferService { ... @Transactional(rollbackFor = ServiceException.class) public void transfer(String sourceAcctId, String targetAcctId, double amount) throws ServiceException { this.nativeAccountService.decreaseAmount(sourceAcctId, amount); this.increaseAmount(targetAcctId, amount);...
Hi, 你好! 不好意思,再次打扰。 我试着把bytetcc 集成到springboot的时候,我遇到了LocalXADataSource transactionManager NullPointerException, 请看现在配置和代码: pom.xml commons-dbutils commons-dbutils 1.6 org.bytesoft bytetcc-common 0.3.0 org.bytesoft bytetcc-supports 0.3.0 因为我是用的yml来配置的数据源,所以LocalXADataSource 的初始化是在代码里面做的,而不是在xml文件 @ConfigurationProperties(prefix = "spring.datasource.common") @Bean @Primary @Qualifier(MAIN_DATA_SOURCE) public DataSource dataSource() {...
My redis is a cluster env, include 6 nodes, When I execute: redis-dump -u 127.0.0.1:7000 > db_7000_full.json at 7000 node, output log: CROSSSLOT Keys in request don't hash to the...