摘要:
Linux搭建Go运行环境 一、go官网下载地址 https://golang.org/dl/ [root@localhost ~]# cd /opt [root@localhost ~]# wget https://dl.google.com/go/go1.11.4.linux-amd64.tar 阅读全文
摘要:
一、简单介绍 SQLite 触发器(Trigger)是数据库的回调函数,它会在指定的数据库事件发生时自动执行/调用。以下是关于 SQLite 的触发器(Trigger)的要点: SQLite 触发器(Trigger)可以指定在特定的数据库表发生 DELETE、INSERT 或 UPDATE 时触发, 阅读全文
摘要:
https://blog.csdn.net/zhangsheng_1992/article/details/52598396 https://blog.csdn.net/xiyangyang8110/article/details/52163106 https://blog.csdn.net/wei 阅读全文
摘要:
一、查看某个端口接收到的数据 [root@localhost ~]# tcpdump -i eth0 port 3120 # 监听从3120端口进来的数据包 [root@localhost ~]# tcpdump -s 0 -X 'tcp dst port 3120' 1. 其中etho为网卡名称, 阅读全文
摘要:
命令格式 [root@localhost ~]# scp [参数] [原路径] [目标路径] 命令功能 scp是 secure copy的缩写, scp是linux系统下基于ssh登陆进行安全的远程文件拷贝命令。linux的scp命令可以在linux服务器之间复制文件和目录。 命令参数 -1 强制s 阅读全文
摘要:
编辑定时任务 */10 * * * * python /root/a.py >> /www/a.log 2>&1 # 每隔10分钟,执行一次 30 * * * * python /root/a.py >> /www/a.log 2>&1 # 每小时, 第30分钟执行 * 2 * * * * curl 阅读全文
摘要:
录制终端视频 [root@localhost ~]# asciinema rec first.cast [root@localhost ~]# asciinema rec /www/wwwroot/first.cast # rec后面跟录制文件的保存位置 [root@localhost ~]# as 阅读全文
摘要:
创建索引 1、单列索引 单列索引是一个只基于表的一个列上创建的索引。基本语法如下: sqlite> CREATE INDEX index_name ON table_name (column_name); sqlite> CREATE INDEX jp_host_addr ON jp_host (a 阅读全文
摘要:
gevent:认识一 import time import gevent # 带有io操作的内容写在函数里,然后提交func函数给gevent def func(): print("start func ...") gevent.sleep(1) print("end func ...") g1 = 阅读全文
摘要:
协程简述 是操作系统不可见的。 协程本质就是一条线程,多个任务在一条线程上来回切换。 利用协程这个概念实现的内容:来规避IO操作,就达到了我们将一条线程中的io操作降到最低的目的。 切换 并 规避io 的两个模块 一、gevent: 利用了 greenlet 底层模块完成的切换 + 自动规避io的功 阅读全文