kill terminate a process 发送指定的信号到相应进程。不指定信号将发送SIGTERM(15)终止指定进程。若仍无法终止该程序可用“ KILL” 参数,其发送的信号为SIGKILL(9) ,将强制结束进程,使用ps命令或者jobs 命令可以查看进程号。 格式: 常用参数: l:打 ...
分类:
其他好文 时间:
2019-01-23 12:29:43
阅读次数:
309
DotXxlJob [github][https://github.com/xuanye/DotXxlJob] xxl job的dotnet core 执行器实现,支持XXL JOB 2.0+ 1 XXL JOB概述 [XXL JOB][1]是一个轻量级分布式任务调度平台,其核心设计目标是开发迅速、 ...
分类:
Web程序 时间:
2019-01-19 19:55:13
阅读次数:
293
Abstraction Musical composition is a sophisticated movement of thought that is unique for humans. More concretely, composition reflects the basic tech ...
分类:
编程语言 时间:
2019-01-19 13:52:00
阅读次数:
279
1、查看当前库的最大连接数 show max_connections; 2、查看当前数据库的活动连接数 select datname,application_name,pid,state from pg_stat_activity; 3、杀非活动进程 select pg_terminate_back ...
分类:
数据库 时间:
2019-01-18 15:38:40
阅读次数:
331
load data local infile 'C:/Users/Administrator/Documents/gaunai2.csv' into table newtable (c1,c2) fields terminated by ',' ...
分类:
数据库 时间:
2019-01-18 12:56:14
阅读次数:
152
inner join 只打印能匹配上的数据,没有匹配上的不输出 left join 只打印能匹配上的数据,没有匹配上的不输出 right join full outer join left outer join left semi join 相当于 select * from a where a.i ...
分类:
其他好文 时间:
2019-01-17 23:53:59
阅读次数:
206
题面 题解 这种题目就是要好好推倒 我们枚举最小的数是哪一个,那么答案就是$$Ans=\sum_{i=1}^nT^i{n i\choose k 1}$$ 因为有$$\sum_{i=p}^n{n i\choose k 1}={n p+1\choose k}$$ 原式太难算了,我们可以先计算$\sum_ ...
分类:
其他好文 时间:
2019-01-17 14:07:01
阅读次数:
217
目录 App\Models 没有就自己创一个 创建对应控制器的php文件,首字母大写 <?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\DB; clas ...
分类:
其他好文 时间:
2019-01-17 10:22:08
阅读次数:
256
题面 题解 设$lim=(n 1)/2$(这里是下取整),那么$x$位置的值最大不能超过$lim$,而$y$处的值不能小于$y$,于是有$$Ans=\sum_{i=1}^{lim}\sum_{j=2 i+1}^n(y 2)!{j 2\choose y 2}(n y)!$$ 上式的意思是,枚举$x$处 ...
分类:
其他好文 时间:
2019-01-16 14:23:13
阅读次数:
226