问题 Tcmalloc 由于使用了精心设计的 cache,进而大大提高了malloc 和 free 的效率,但由之而来的是 cache 大小的难以把控,容易出现 cache 占用过大,进而 OOM 的问题,tcmalloc 提供了两个方案解决这个问题 展现 tcmalloc 维护的内存状态解决 // ...
分类:
其他好文 时间:
2021-06-23 16:41:42
阅读次数:
0
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2021-06-20 17:53:20
阅读次数:
0
增加 ba.admin.service cd /usr/lib/systemd/system/ vi ba.admin.service 文件内容如下: [Unit] Description=Bootstrap Admin Application [Service] Type=simple Worki ...
分类:
其他好文 时间:
2021-06-13 10:36:44
阅读次数:
0
1. 修改/etc/systemd/system.conf sudo vim /etc/systemd/system.conf 2. 找到一下两行 #DefaultTimeoutStartSec=90s #DefaultTimeoutStopSec=90s 3. 取消注释并修改为 DefaultTi ...
分类:
系统相关 时间:
2021-06-13 09:31:35
阅读次数:
0
业务使用maxwell监听数据库的binlog日志,然后发送到kafka,经过这些日志进行业务逻辑的处理。 问题:线上的这段业务没有进行执行。 猜测1、由于前段时间进行了数据库表的字段转移,把两个字段从上层表order下放到了下层表advert,以为是这段代码进行改写的时候没能覆盖逻辑。 看了代码之 ...
分类:
其他好文 时间:
2021-06-11 18:59:01
阅读次数:
0
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:
移动开发 时间:
2021-06-11 18:08:57
阅读次数:
0
nginx中文文档:http://www.nginx.cn/doc/index.html 1.到官网下载nginx的压缩包: https://nginx.org/ 2.解压到相应的目录,比如我是e盘 然后修改目录名字为nginx,进入nginx目录 双击nginx.exe 来启动nginx 注意:启 ...
分类:
其他好文 时间:
2021-06-10 18:14:55
阅读次数:
0
源码下载地址:https://www.postgresql.org/ftp/source/ [root@muze1 data]# wget https://ftp.postgresql.org/pub/source/v13.2/postgresql-13.2.tar.gz-- 创建用户groupad ...
分类:
其他好文 时间:
2021-06-08 23:32:32
阅读次数:
0
in 和 exists区别 in 是把外表和内表作hash join,而exists是对外表作loop,每次loop再对内表进行查询。 一直以来认为exists比in效率高的说法是不准确的。 如果查询的两个表大小相当,那么用in和exists差别不大。 如果两个表中一个较小,一个是大表,则子查询表大 ...
分类:
其他好文 时间:
2021-06-07 20:57:52
阅读次数:
0
SqlSugar 学习 记录 1. 多表查询 三表查询 int total = 0; var list = db.Queryable<SYS_User_UserGroup, SYS_User, SYS_UserGroup>((a, b, c) => new object[] { JoinType.L ...
分类:
数据库 时间:
2021-06-07 20:34:16
阅读次数:
0