源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:
其他好文 时间:
2021-07-28 21:23:54
阅读次数:
0
分布式ID生成器(CosId)设计与实现 CosId 简介 CosId 旨在提供通用、灵活、高性能的分布式 ID 生成器。 目前提供了俩类 ID 生成器: SnowflakeId : 单机 TPS 性能:409W/s JMH 基准测试 , 主要解决 时钟回拨问题 、机器号分配问题 并且提供更加友好、 ...
分类:
其他好文 时间:
2021-07-27 17:40:18
阅读次数:
0
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:
其他好文 时间:
2021-07-27 17:30:58
阅读次数:
0
问题描述 使用Azure Redis服务时,如突然遇见异常,命令Timeout performing SET xxxxxx等情况,如何第一时间查看是否有Failover存在呢?看是否有进行平台的维护呢? Error:Timeout performing SET xxxxxxxx, inst: 1, ...
分类:
其他好文 时间:
2021-07-26 16:35:11
阅读次数:
0
安装nginx的前奏 安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 创建一个文件夹 cd /usr/local mkdir nginx cd nginx 下载Nginx tar包 和 解压 wget ...
分类:
其他好文 时间:
2021-07-23 17:42:55
阅读次数:
0
centos7.9 环境 主机: win7 虚拟机: vmware 12 安装文件: CentOS-7.9-x86_64-DVD-2009.iso 输出路径: W:\Virtual Machines\CentOS7 问题 无法连接网络 20210721 现象: 虚拟机NAT网络设置,动态分配IP,其 ...
分类:
系统相关 时间:
2021-07-22 17:37:25
阅读次数:
0
#Springboot-微服务-微服务组件之服务管理-Zuul网关 Zuul.简介 官网:https://github.com/Netflix/zuul Zuul加入后的架构 不管是来自于客户端(PC或移动端)的请求,还是服务内部调用。一切对服务的请求都会经过Zuul这个网关,然后再由网关来实现 鉴 ...
分类:
编程语言 时间:
2021-07-19 16:48:33
阅读次数:
0
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:
其他好文 时间:
2021-07-19 16:46:42
阅读次数:
0
1. redis 6.2 系列 1.1 安装 进入官网,下载redis-6.2.4.tar.gz 将下载好的 redis 文件压缩包,上传到 linux 系统中 # 通过终端命令解压 [root@localhost local]# tar -zxvf redis-6.2.4.tar.gz # 重命令 ...
分类:
系统相关 时间:
2021-07-19 16:45:13
阅读次数:
0
#Springboot-微服务-微服务组件之服务管理-eureka-消费端调用服务 微服务现在大部分的调用方式都是rest风格的调用方式也就常见的http,当然也还有另一种方式就是RPC 认识RPC RPC,即 Remote Procedure Call(远程过程调用),是一个计算机通信协议。 该协 ...
分类:
编程语言 时间:
2021-07-19 16:37:51
阅读次数:
0