码迷,mamicode.com
首页 >  
搜索关键字:ssl crt key keystone godaddy    ( 46244个结果
服务器 安装docker
#更新yum软件管理器 yum -y update #安装docker yum install -y docker 2.配置docker 加速器 curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361 ...
分类:其他好文   时间:2021-06-18 20:01:26    阅读次数:0
数据倾斜的原因是什么,如何解决
key 分布不均匀 业务数据本身的欠缺性 建表设计方法不对 有些 SQL 难免会有一下数据倾斜不可避免 表现的形式: 任务完成进度卡死在99%,或者进度完成度在100%但是查看任务监控,发现还是有少量(1个或几个)reduce 子任务未完成。因为其处理的数据量和其他 reduce 差异过大。单一re ...
分类:其他好文   时间:2021-06-18 19:56:57    阅读次数:0
条件查询
create table student ( ID int primary key identity(1,1), studentNo varchar(20) not null, name varchar(20) not null, address varchar(20) not null, year ...
分类:其他好文   时间:2021-06-18 19:42:42    阅读次数:0
表的简单约束
--文章表create table Article ( ID int primary key identity(1,1) not null --ID Title varchar(60) not null --标题 )--评论表create table Comment ( ID int primary ...
分类:其他好文   时间:2021-06-18 19:36:26    阅读次数:0
vue实用方法函数
及时渲染视图的方法 有时候遇到给一个数组或者对象添加值或修改值,页面并不会及时渲染出修改过的数据,这时可以实用this.$set来解决这个问题 在使用this.$set(target, key, value)时,target为需要添加属性的对象,key是要添加的属性名,value为属性key对应的值 ...
分类:其他好文   时间:2021-06-18 19:35:53    阅读次数:0
配置中心 和 缓存的思考
配置中心 例如: 携程的apollo , furion 配置中心, 是用来配置一些开关值,灰度值 等容易变化的配置项。一般场景是需要手动更新配置值, 也可以通过程序更新。 一般来讲配置中心的key 是需要在配置中心提前注册好的。 缓存 例如: redis, memcached 缓存一些热点数据, 防 ...
分类:其他好文   时间:2021-06-17 17:12:38    阅读次数:0
数据库学习第三天
查询排序order by,正序asc 倒序desc。 分组查询group by,分组查询后筛选使用having; 默认值约束 default; 非空约束not null;注:非空字段必须赋值。唯一约束unique; 主键(非空+唯一)primary key; 自增长zerofill; 外键CONST ...
分类:数据库   时间:2021-06-17 16:52:03    阅读次数:0
python中max 与lambda函数联用
python中max 与lambda函数联用 dic={'k1':10,'k2':100,'k3':30} print(dic[max(dic,key=lambda k:dic[k])]) #输出结果为100 当看到*max(dic,key=lambda k:dic[k])*时懵逼了,这怎么比大小, ...
分类:编程语言   时间:2021-06-17 16:43:38    阅读次数:0
Markdown
Markdown learning h2 h3 h4 font hello,world! hello,world! hello,world! hello,world! hello,world! hello,world! quote choose Java, split lines picture h ...
分类:其他好文   时间:2021-06-17 16:39:11    阅读次数:0
charles的使用
charles: 如何抓包 >设置代理 >(1.导航栏proxy 2.windows Proxy) 抓取https >安装证书 >(1.导航栏proxy 2.SSL Proxying Settings) 定位问题 >断点测试 >(1.导航栏proxy 2.Breakpoints) 弱网测试 >模拟弱 ...
分类:其他好文   时间:2021-06-17 16:35:04    阅读次数:0
46244条   上一页 1 ... 8 9 10 11 12 ... 4625 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!