配置中心 例如: 携程的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函数联用 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 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
var fs = require('fs') var util = require('util') var logPath = 'upgrade.log' var logFile = fs.createWriteStream(logPath, { flags: 'a' }) console.log ...
分类:
Web程序 时间:
2021-06-16 18:20:32
阅读次数:
0
create or replace trigger trigger_demo before insert on table1 for each rowdeclare -- local variables here t_conumnValue VARCHAR2(10); t_lbId VARCHAR2 ...
分类:
数据库 时间:
2021-06-16 18:09:14
阅读次数:
0
阅读本文,你可以了解如何编写开发和调试 XAML 构建为 Baml 和 g.cs 文件的过程和工具。本文也适合想要了解 WPF 的 XAML 构建过程的开发者阅读,本文提供了可以断点调试 WPF 的 XAML 构建过程的方法和代码 ...
查询数据库中的重复数据——MySQL数据库 1、建表语句 DROP TABLE IF EXISTS `t_people`; CREATE TABLE `t_people` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `people_no` ...
分类:
数据库 时间:
2021-06-16 17:52:07
阅读次数:
0
枚举 1. 枚举 枚举类型( enum type )是指由一组固定的常量组成合法值的类型,本质上是int值。 Ⅰ. 用enum代替int常量 (1)int枚举模式 // FruitConsts.java /** * @author cph * create datetime 2021/6/8 16: ...
分类:
编程语言 时间:
2021-06-16 17:49:38
阅读次数:
0
一 新增文档 #新增一个id为1的书籍(POST和PUT都可以) POST lqz/_doc/1/_create #POST lqz/_doc/1 #POST lqz/_doc 会自动创建id,必须用Post { "title":"红楼梦", "price":12, "publish_addr":{ ...
分类:
其他好文 时间:
2021-06-16 17:39:04
阅读次数:
0