码迷,mamicode.com
首页 >  
搜索关键字:cache group    ( 21338个结果
热部署Devtools
##在子工程添加devtools的依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <opt ...
分类:其他好文   时间:2020-12-19 12:44:19    阅读次数:2
maven 常见jar包
<dependencies> <!--Junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <!--数据库驱动--> <d ...
分类:编程语言   时间:2020-12-19 12:15:45    阅读次数:2
hdfs的相关api
连接hdfs 根据hdfs的版本引用相关的hdfs依赖 <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client --> <dependency> <groupId>org.apache.hadoop</group ...
分类:Windows程序   时间:2020-12-18 13:06:56    阅读次数:4
LVM创建
名词解释:1.物理卷 Physical Volume (PV):一个物理卷,包含了许多物理分区2.物理分区 Physical Extents (PE) 3.卷组 Volume Group (VG):一个VG是由许多物理分区组成的(可能来自多个物理卷或硬盘)。 4.逻辑卷 Logical Volume ...
分类:其他好文   时间:2020-12-18 12:56:26    阅读次数:3
谈谈MySQL bin log的写入机制、以及线上的参数是如何配置的
问个问题吧!为什么你需要了解binlog的落盘机制呢? 我来回答一下: ? 上一篇文章提到了生产环境中你可以使用binlog做数据的恢复、审计、以及搭建主从架构的MySQL集群。那你使用这些特性优势的时候有没有问自己一下,你使用的binlog是安全的吗?会不会少记录了一部分数据呢?因为使用一个有问题 ...
分类:数据库   时间:2020-12-18 12:36:00    阅读次数:2
类型断言 vs 泛型
function getCacheData(key: string): any { return (window as any).cache[key]; } interface Cat { name: string; run(): void; } const tom = getCacheData(' ...
分类:其他好文   时间:2020-12-18 12:29:58    阅读次数:2
Lamda 表达式里的Join和GroupJoin的区别, 如何实现SQL的Left Join效果
例如,可以将产品表与产品类别表相联接,得到产品名称和与其相对应的类别名称 db.Products .Join ( db.Categories, p => p.CategoryID, c => c.CategoryID, (p, c) => new {p,c.CategoryName} ) .Wher ...
分类:数据库   时间:2020-12-17 12:56:16    阅读次数:7
idea中springboot热部署(无需重启项目)
idea中springboot热部署(无需重启项目) 1.在pom.xml文件中导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <o ...
分类:编程语言   时间:2020-12-17 12:53:11    阅读次数:1
java 面试 - 多线程与高并发
synchronize 与 volatile 一 使用场景 1 synchronized应用于对象实例与对象方法 2 synchronized应用于类与静态方法 二 对象的内存布局 三 特性: 原子性: 可见性: 有序性: 可重入性: 参考文章: https://openjdk.java.net/g ...
分类:编程语言   时间:2020-12-17 12:01:54    阅读次数:1
influxDB-查询操作
influxDB-查询操作 1 # 综合使用 2 书写顺序 3 select distinct * from '表名' where '限制条件' group by '分组依据' having '过滤条件' order by limit '展示条数' 4 执行顺序 5 from -- 查询 6 whe ...
分类:数据库   时间:2020-12-16 12:46:47    阅读次数:6
21338条   上一页 1 ... 30 31 32 33 34 ... 2134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!