摘要:
Java数据同步 项目基于Spring Boot,数据库同步涉及到多个数据源,配置多个数据源。 在application.properties中配置两个数据源,remote.wz和local.wz spring.datasource.remote.wz.driver-class-name=com.m 阅读全文
摘要:
Redis字符串详解 redis虽然是使用c语言实现的,但是它并没有直接使用c语言提供的字符串,char[]和char*。而是自己实现的动态字符串类型(simple dynamic string),简称(sds) struct sdshdr{ int len; // 空间总长度 int free; 阅读全文