1.缓存工具 from django.core.cache import cache 存储缓存数据:cache.set('key', 内容, 有效期) 读取缓存数据:cache.get('key') 删除缓存数据:cache.delete('key') 注意:存储进去和读取出来的数据类型相同,所以读 ...
分类:
其他好文 时间:
2021-03-31 11:41:12
阅读次数:
0
1.logging模块输出日志 import logging as logger import time import datetime print(time.localtime(),datetime.datetime.now()) print(datetime.datetime.now().str ...
分类:
编程语言 时间:
2021-03-29 12:49:43
阅读次数:
0
github项目地址 https://github.com/aa310958153/easy-canal 使用效果 //[数据库名字].[表名] @Table(name = "canal.act_activity") @Component public class ActivityCanalList ...
分类:
其他好文 时间:
2021-03-29 11:34:32
阅读次数:
0
安装 mini-css-extract-plugin 抽离 css 内容 npm install mini-css-extract-plugin -D 压缩 css 代码 npm install optimize-css-assets-webpack-plugin -D 压缩js npm insta ...
分类:
Web程序 时间:
2021-03-16 14:04:04
阅读次数:
0
1. 为什么要引入Yarn和Spark。 从开源角度看,YARN的提出,从一定程度上弱化了多计算框架的优劣之争。YARN是在Hadoop MapReduce基础上演化而来的,在MapReduce时代,很多人批评MapReduce不适合迭代计算和流失计算,于是出现了Spark和Storm等计算框架,而 ...
分类:
其他好文 时间:
2021-03-15 11:29:44
阅读次数:
0
配置文件 flume-taildir-logger.conf: # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1. ...
分类:
其他好文 时间:
2021-03-08 13:38:15
阅读次数:
0
<style> div{ width: 200px; height: 20px; background-color: red; } ul{ display: none; margin: 0; padding: 0; width: 200px; background-color: #ccc; } </ ...
分类:
Web程序 时间:
2021-03-01 14:07:32
阅读次数:
0
自动装配 springboot的启动注解是@SpringBootApplication,它是一个组合注解,是由@SpringBootConfiguration、@EnableAutoConfiguration、@ComponentScan组成的。而自动配置就是由@EnableAutoConfigur ...
分类:
编程语言 时间:
2021-02-18 13:20:23
阅读次数:
0
当我们使用原生的audio标签时,可以看到如下的效果。 那么如何让下载按钮隐藏掉呢? 1. controlsList="nodownload" // 这个方法只支持 Chrome 58+, 低于该版本的是没有无法隐藏的 <audio src="/i/horse.ogg" controls="cont ...
分类:
Web程序 时间:
2021-02-06 11:55:17
阅读次数:
0
Spring Cloud 是目前最火的微服务框架,Feign 作为基础组件之一,在 Spring Cloud 体系中发挥了重要的作用。 一、FeignClient注解 FeignClient注解被@Target(ElementType.TYPE)修饰,表示FeignClient注解的作用目标在接口上 ...
分类:
其他好文 时间:
2021-02-03 10:31:00
阅读次数:
0