在计算机性能调试领域里,profiling 是指对应用程序的画像,画像就是应用程序使用 CPU 和内存的情况。 Go性能优化 CPU profile:报告程序的 CPU 使用情况,按照一定频率去采集应用程序在 CPU 和寄存器上面的数据 Memory Profile(Heap Profile):报告 ...
分类:
其他好文 时间:
2021-06-06 18:58:59
阅读次数:
0
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:
系统相关 时间:
2021-06-04 19:47:34
阅读次数:
0
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:
数据库 时间:
2021-06-04 18:53:42
阅读次数:
0
--指定库 use[SC_Flow] --判断存储过程是否存在 IF EXISTS(SELECT 1 FROM SYSOBJECTS T1 WHERE T1.NAME='Proc_BiddingReport') begin drop PROCEDURE Proc_BiddingReport end ...
分类:
数据库 时间:
2021-06-02 14:02:23
阅读次数:
0
网上很多设置~/.bashrc或者/etc/profile的帖子,但是当我们使用ENTRYPOINT会失效,使用CMD格式的话有导致丢失启动参数。 这里"Using an entrypoint script"来实现该功能。 实现alias ll='ls -al' 编写ll命令文件: ll #!/bi ...
分类:
其他好文 时间:
2021-06-02 11:58:17
阅读次数:
0
https://mp.weixin.qq.com/s/HGfRRO1Acz-sVe_vLau2FA 初学Go语言时常见的小坑:goroutine、panic和recover 原创 博文视点 博文视点Broadview 2020-07-23 ...
分类:
其他好文 时间:
2021-05-24 15:49:09
阅读次数:
0
vi ~/.bash_profile #GRADLE GRADLE_HOME=/Users/qinxy/software/gradle-4.9 PATH=$PATH:$GRADLE_HOME/bin export GRADLE_HOME GRADLE_USER_HOME PATH 更新效 sourc ...
分类:
系统相关 时间:
2021-05-24 10:27:44
阅读次数:
0
##在Unity中导入Vuforia ###方法一: 去官网下载 右键 Packages 文件夹 show in Explorer 导入下载资源包的package Package Manager中查看Vuforia查看版本 ###方法二:直接在Package Manager中搜索Vuforia下载对 ...
分类:
其他好文 时间:
2021-05-24 10:10:14
阅读次数:
0
审计 审计机制是 DM 数据库管理系统安全管理的重要组成部分之一。DM 数据库除了提供数据安全保护措施外,还提供对日常事件的事后审计监督。DM 具有一个灵活的审计子系统,可以通过它来记录系统级事件、个别用户的行为以及对数据库对象的访问。通过考察、跟踪审计信息,数据库审计员可以查看用户访问的形式以及曾 ...
分类:
其他好文 时间:
2021-05-24 10:03:06
阅读次数:
0
select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:
数据库 时间:
2021-05-24 08:59:21
阅读次数:
0