Redis的数据都是存储在内存中,为了数据的永久保存,需要把数据同步到硬盘上,这个过程就叫做持久化. Redis的持久化存在有两种方式: rdb方式,aof方式,这两种方式可以单独使用,也可以综合使用. rdb持久化方式: 是在指定的时间间隔写入硬盘 aof持久化方式:是以日志,记录每一个操作,服务 ...
分类:
数据库 时间:
2020-06-29 20:13:43
阅读次数:
68
Typora标题自动编号 提示:要了解将这些CSS片段放在哪里,请参阅添加自定义CSS。 打开Typora偏好设置,打开主题文件夹,在主题文件夹中创建base.user.css文件,放置以下内容,则Typora自带的几个主题都会生效。 文章中的自动编号 此方法自动将编号添加到文章中的所有标题,如下所 ...
分类:
其他好文 时间:
2020-06-29 11:14:11
阅读次数:
230
try { $error = 'Always throw this error'; throw new Exception($error); // Code following an exception is not executed. echo 'Never executed';} catch ( ...
分类:
其他好文 时间:
2020-06-28 13:12:46
阅读次数:
66
创建文件夹 mkdir gitlab/{config,data,logs} 执行命令运行并创建容器 docker run -d --restart always -p 4443:443 -p 8888:80 -p 2222:22 -v /gitlab/config:/etc/gitlab -v /g ...
分类:
其他好文 时间:
2020-06-28 13:11:36
阅读次数:
51
demo: #配置日志输出类型 #logging.pattern.console=%boldMagenta(%d{yyyy-MM-dd HH:mm:ss}) [%p] %highlight(%C:%L) : %m %n logging.pattern.console=%d{yyyy-MM-dd HH ...
分类:
移动开发 时间:
2020-06-27 23:58:04
阅读次数:
270
简单来讲就是:为了提高效率,http.Get 等请求的 TCP 连接是不会关闭的(再次向同一个域名请求时,复用连接),所以必须要手动关闭。 2019-01-24 10:43:32 更新 不管是否使用 Resp 的内容都需要手动关闭,否则会导致进程打开的 fd 一直变多,最终系统杀掉进程,报错类似: ...
分类:
Web程序 时间:
2020-06-27 11:37:46
阅读次数:
189
One user feedback: I have KTM Bench ECU programmer to test with different ecms And always with the same message "Bosch MEDC17 (TC1724 /1728 / 1767 / 1 ...
分类:
其他好文 时间:
2020-06-24 16:31:44
阅读次数:
82
原因分析: Ah, ok. I thought it was commented out because it caused the error. You can always put a breakpoint in the line printing the error and look at t ...
分类:
其他好文 时间:
2020-06-23 21:48:50
阅读次数:
84
#ifdef _WIN32 由编译器(ml.exe/ml64.exe)内部定义的。具体描述是: _WIN32:Defined for applications for Win32 and Win64. Always defined. _WIN64:Defined for applications f ...
分类:
其他好文 时间:
2020-06-23 13:19:47
阅读次数:
53
1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 daemonize no 2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定 pidfile /var/run/redis ...
分类:
其他好文 时间:
2020-06-23 11:40:22
阅读次数:
60