1.Spring是如何集成Redis的?
Spring Data Redis
引入依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency><dependency><groupId&…
[rootk8s-master ~]# kubectl get node
The connection to the server 192.168.92.26:6443 was refused - did you specify the right host or port?查到是kubelet进程没有启动
[rootk8s-master ~]# systemctl status kubelet
● kubelet.service - kubelet: The Kubernetes …
738 单调递增的数字(medium)
当且仅当每个相邻位数上的数字 x 和 y 满足 x < y 时,我们称这个整数是单调递增的。
给定一个整数 n ,返回 小于或等于 n 的最大数字,且数字呈 单调递增 。
思路:将整数转…