上一页 1 2 3 4 5 6 ··· 12 下一页
摘要: postcss.config.js https://github.com/webpack-contrib/postcss-loader https://blog.csdn.net/Jensen_Yao/article/details/103203490 postcss 是帮我们后处理css ,css 阅读全文
posted @ 2021-06-29 14:54 薄荷味日记 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 快速排序法 ①先从队尾开始向前扫描且当low < high时,如果a[high] > tmp,则high–,但如果a[high] < tmp,则将high的值赋值给low,即arr[low] = a[high],同时要转换数组扫描的方式,即需要从队首开始向队尾进行扫描了②同理,当从队首开始向队尾进行 阅读全文
posted @ 2021-06-17 10:10 薄荷味日记 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 安装celery pip install Celery celery 手册: https://www.celerycn.io/ru-men/celery-chu-ci-shi-yong 安装celery-redis celery-redis:如果把redis当做broker,需要安装 pip ins 阅读全文
posted @ 2021-06-17 09:48 薄荷味日记 阅读(1017) 评论(2) 推荐(0) 编辑
摘要: FastAPI 教程翻译 : https://blog.csdn.net/xuqingskywolf/category_10022295.html 介绍:https://blog.csdn.net/xuqingskywolf/article/details/106438933 特征:https:// 阅读全文
posted @ 2021-06-17 09:44 薄荷味日记 阅读(107) 评论(0) 推荐(0) 编辑
摘要: OSI 模型是什么 有哪些协议是基于 TCP 的,哪些是基于 UDP 的 为什么建立连接需要三次握手,而断开连接需要四次握手 TCP首部长度,有哪些字段 三次握手过程中有哪些不安全性 TCP协议如何解决拥塞 什么是 OSI 模型? 开放系统互连模型是国际标准化组织创建的概念模型,它使各种通信系统能够 阅读全文
posted @ 2021-06-10 16:08 薄荷味日记 阅读(256) 评论(0) 推荐(0) 编辑
摘要: explain显示了MySQL如何使用索引来处理select语句以及连接表。 explain关键字的使用方法很简单,就是把它放在select查询语句的前面。 mysql查看是否使用索引,简单的看type类型就可以。如果它是all,那说明这条查询语句遍历了所有的行,并没有使用到索引。 https:// 阅读全文
posted @ 2021-06-10 15:14 薄荷味日记 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: mysql 常用的SQL https://www.huaweicloud.com/articles/206e8f5e82331018f8cfde939455c319.html # 按客户端 IP 分组,看哪个客户端的链接数最多 select client_ip,count(client_ip) as 阅读全文
posted @ 2021-06-10 15:09 薄荷味日记 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 什么是mysql慢查询,全称慢查询日志 MySQL的慢查询日志是MySQL提供的一种日志记录,它用来记录在MySQL中响应时间超过阀值的语句,具体指运行时间超过long_query_time值的SQL,则会被记录到慢查询日志中。 具体指运行时间超过long_query_time值的SQL,则会被记录 阅读全文
posted @ 2021-06-10 15:05 薄荷味日记 阅读(1782) 评论(0) 推荐(0) 编辑
摘要: from pdf2image import convert_from_path def get_page_image( # pdf 按页切成图片 hash_value: str ) -> Dict[int, str]: pdf_path = os.path.join(config.PDF_DIR, 阅读全文
posted @ 2021-06-02 16:36 薄荷味日记 阅读(125) 评论(0) 推荐(0) 编辑
摘要: MySql的CURRENT_TIMESTAMP CREATE TABLE `table_name` ( `id` int(11) NOT NULL AUTO_INCREMENT, `project_id` int(11) NOT NULL, `pdf_id` char(32) COLLATE utf 阅读全文
posted @ 2021-05-28 10:56 薄荷味日记 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页