# 整理下docker 创建redis集群多分片shards、多副本replicas的命令 # 分片平均系统数据,副本保证读写分离,docker pull redisdocker rm redis-node1 redis-node2 redis-node3 redis-node4 redis-nod ...
分类:
其他好文 时间:
2021-04-06 14:07:09
阅读次数:
0
三、Informer 使用示例 在实际的开发工作中,Informer 主要用在两处: 在访问 k8s apiserver 的客户端作为一个 client 缓存对象使用; 在一些自定义 controller 中使用,比如 operator 的开发; 1、下面是一个作为 client 的使用示例: pa ...
分类:
其他好文 时间:
2021-04-02 13:37:49
阅读次数:
0
一、概念 1、三要素重叠(+备忘录)子问题、最优子结构、状态转移方程 2、(列状态转移方程)步骤 明确初始条件base case、明确状态、明确选择、定义dp数组/函数 二、斐波那契数列 1、原始暴力递归 重复运算--重叠子问题 递归的时间复杂度 2、带备忘录的递归(自顶向下) class Solu ...
分类:
编程语言 时间:
2021-03-31 11:35:50
阅读次数:
0
1. 在容器里查看 / $ ip link show eth0 531: eth0@if532: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP link/ether 02:42:ac:12:00:06 ...
分类:
其他好文 时间:
2021-03-30 12:45:47
阅读次数:
0
原文链接:https://www.jianshu.com/p/00edb3d74a33 CAS是CPU的一条指令,其具有原子性,原子性是由CPU硬件层面保证的。 CAS原语有三个操作数——内存位置(V)、预期原值(A)、新值(B)。若内存位置与预期原值匹配则处理器将该位置更新为新值。否则不做操作。无 ...
分类:
其他好文 时间:
2021-03-18 14:36:39
阅读次数:
0
<form:radiobuttons path="isInsuredCasualty" class="input-xxlarge" items="${fns:getDictList('yes_no')}" itemLabel="label" itemValue="value" htmlEscape= ...
分类:
Web程序 时间:
2021-03-18 14:02:48
阅读次数:
0
1. 基本的经典查询 #基本的查询语句 SELECT * FROM data.`dataanalyst` WHERE city ='上海' AND (education = '本科' OR workYear = '1-3年' ) AND secondType LIKE '%开发%' #字段包含开发 ...
分类:
数据库 时间:
2021-03-10 13:35:36
阅读次数:
0
一、总章 1.1 前言 本文主要参考这篇文章 另外增加了自己觉得重要的部分 1.2 集合框架概览图 1.3 基础接口源码解析 1.3.1 Iterator public interface Iterator<E> { boolean hasNext(); E next(); default void ...
分类:
其他好文 时间:
2021-03-08 13:04:17
阅读次数:
0
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:
其他好文 时间:
2021-03-06 14:44:48
阅读次数:
0
select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....]) --删除 from table where id not in (select max(id) from table grou ...
分类:
数据库 时间:
2021-03-06 14:17:01
阅读次数:
0