上一页 1 2 3 4 5 6 ··· 35 下一页
摘要: tornado推荐是多进程+协程的方式运行,ioloop.current().start(),单个接口阻塞,会导致整个服务阻塞,所以一般接口逻辑中要使用非阻塞的方法。 比如time.sleep(5)应该更换为yield gen.sleep(5),这样就可以将资源让给其他接口处理,该接口仍然会阻塞,等 阅读全文
posted @ 2022-01-25 17:30 zipon 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 转 https://canmeng.net/c/967 实测可用 阅读全文
posted @ 2022-01-19 11:14 zipon 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 1、直接点击报错文件位置,根据特征是否能确定问题位置 2、如果1不行,webpack设置source-map module.exports = { //......生产直接配置为true productionSourceMap: process.env.NODE_ENV 'dev', configu 阅读全文
posted @ 2021-12-24 10:21 zipon 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 转 https://www.jb51.net/article/47298.htm 阅读全文
posted @ 2021-12-03 16:48 zipon 阅读(94) 评论(0) 推荐(0) 编辑
摘要: pip uninstall pycurl brew reinstall openssl export PATH="/opt/homebrew/opt/openssl@1.1/bin:$PATH" export LDFLAGS="-L/opt/homebrew/opt/openssl@1.1/lib" 阅读全文
posted @ 2021-11-19 10:24 zipon 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1、下载tpc-ds工具 wget http://tpc.org/tpc_documents_current_versions/temporary_download_files/04722b23-2345-46b6-ba0b-5093145a9b19-tpc-ds-tool.zip 2、unzip  阅读全文
posted @ 2021-10-27 14:29 zipon 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 简介: DataX本身作为数据同步框架,将不同数据源的同步抽象为从源头数据源读取数据的Reader插件,以及向目标端写入数据的Writer插件,理论上DataX框架可以支持任意数据源类型的数据同步工作。同时DataX插件体系作为一套生态系统, 每接入一套新数据源该新加入的数据源即可实现和现有的数据源 阅读全文
posted @ 2021-10-10 21:32 zipon 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 原理:模拟mysql slave,向mysql master 说明: 数据过滤:支持通配符的过滤模式,表名,字段内容等 数据路由/分发:解决1:n (1个parser对应多个store的模式) 数据归并:解决n:1 (多个parser对应1个store) 数据加工:在进入store之前进行额外的处理 阅读全文
posted @ 2021-10-10 21:14 zipon 阅读(202) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="机构级别1" prop="govtOrgLevel" :rules="{required:newBasicForm.isGovtWork == '1'? true:false,message:'请选择留学人员'}"> 阅读全文
posted @ 2021-09-13 17:40 zipon 阅读(600) 评论(0) 推荐(0) 编辑
摘要: https代理关键字connect 依赖ngx_http_proxy_connect_module 阿里封装的这个模块 https://github.com/chobits/ngx_http_proxy_connect_module#select-patch 下载对应版本 安装ngx_http_pr 阅读全文
posted @ 2021-08-25 14:19 zipon 阅读(1256) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 35 下一页