Redis持久化 redis可以将数据写入到磁盘中,在停机或宕机后,再次启动redis时,将磁盘中的备份数据加载到内存中恢复使用。这是redis的持久化。持久化有如下两种机制。 RDB 快照持久化 redis可以将内存中的数据写入磁盘进行持久化。在进行持久化时,redis会创建子进程来执行。 red ...
分类:
其他好文 时间:
2021-06-28 19:51:24
阅读次数:
0
Behind the scenes in the computer's memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color ...
分类:
其他好文 时间:
2021-06-28 19:08:20
阅读次数:
0
Calico Overlay网络 在Calico Overlay网络中有两种模式可选(仅支持IPV4地址) IP-in-IP (使用BGP实现) Vxlan (不使用BGP实现) 两种模式均支持如下参数 Always: 永远进行 IPIP 封装(默认) CrossSubnet: 只在跨网段时才进行 ...
分类:
其他好文 时间:
2021-06-22 18:09:50
阅读次数:
0
一、安装(基于docker-compose) 使用docker安装Nginx非常简单,只需要准备如下YML文件即可: version: "3" services: nginx12: restart: always image: daocloud.io/library/nginx:1.12.0 con ...
分类:
其他好文 时间:
2021-06-17 16:49:40
阅读次数:
0
进入docker镜像内部 docker exec -it 镜像id(docker ps) bash 如果无法使用vim命令,需要执行apt-get update 和 apt-get install vim 重启镜像docker update --restart=always <CONTAINER I ...
分类:
其他好文 时间:
2021-06-11 18:28:36
阅读次数:
0
https://juejin.cn/post/6844903859865780231 官方原文 Note that the file property in RollingFileAppender (the parent of TimeBasedRollingPolicy) can be eithe ...
分类:
其他好文 时间:
2021-06-08 23:39:20
阅读次数:
0
docker-compose.yaml version: "3" services: redis: image: redis:5.0.8 container_name: redis restart: always command: redis-server /etc/redis/redis.conf ...
分类:
其他好文 时间:
2021-06-02 19:51:51
阅读次数:
0
一直用ajax好长时间了,对其原理也有一些了解,最近由于项目需要,使用ajax异步进度条的效果,就研究了一下,用原生的XMLHttpRequest实现进度条函数,XMLHttpRequest有以下函数可以使用,摘自(https://www.w3.org/TR/progress-events/) ty ...
分类:
Web程序 时间:
2021-06-02 15:58:34
阅读次数:
0
docker run -d --name jenkins -p 8080:8080 -p 50000:50000 -u root \ -v /opt/jenkins_home:/var/jenkins_home \ -v /var/run/docker.sock:/var/run/docker.so ...
分类:
其他好文 时间:
2021-05-24 09:00:22
阅读次数:
0
用了很久的mc8051,一直以为mc8051的外扩接口有问题,只能写出不能读入。 尝试了很多种方案,包括外部接口使能打一拍读入都试了,都不行。 突然发现数据读入一直都用的assign,换成always@*会是什么样,居然TMD好使了。原始代码 // assign xdata_o =ramx_en ? ...
分类:
其他好文 时间:
2021-05-24 03:21:24
阅读次数:
0