20pzqm 20pzqm
3年前
【electron】ipc模块使用
electron进程模型electron使用多进程架构与chromium类似,electron使用多进程架构。单一进程架构能够节省资源,然而浏览器经常遇到恶意代码,可能导致进程崩溃,浏览器的多个页签公用一个进程必然会一损俱损,因此多进程架构更适合些()。在开发electron的过程中,我们主要接触两个进程:主进程mainprocess与渲染进程re
Wesley13 Wesley13
3年前
4. Nginx模块
Nginx官方模块1.ngx\_http\_stub\_status\_modulehttp://nginx.org/en/docs/http/ngx\_http\_stub\_status\_module.html。(https://www.oschina.net/action/GoToLink?urlhttp%3A%2
Stella981 Stella981
3年前
Python之CSV模块
1\.CSV简介CSV(CommaSeparatedValues)是逗号分隔符文本格式,常用于Excel和数据库的导入和导出,Python标准库的CSV模块提供了读取和写入CSV格式文件的对象。1.1csv.reader对象和csv文件的读取
Stella981 Stella981
3年前
Python开发【模块】:Weakref
Weakreferences前言:_weakref_模块允许python开发者创建弱引用对象。再接下来中,术语referent代表被弱引用所引用的对象。一个弱引用对于对象是不能够保持对象存活的:当仅剩下_referent_的引用都是弱引用时,垃圾回收机制是可以自由销毁_referent_然后重新使用内存的
Stella981 Stella981
3年前
Nginx 模块常用指令
1.HTTP核心模块  A.client\_body\_buffer\_size:指定连接请求实体的缓冲区大小,如果超了,那么这些请求实体的整体或部分将尝试写入一个临时文件,默认值是8k/16K;    B.client\_body\_temp\_path:指定连接请求实体试图写入的临时文件路径,默认值是client\_body\_temp
Stella981 Stella981
3年前
Play Mongo 模块简介
PlayMongo是什么?PlayMongo(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fplaycommunity%2Fplaymongo"PlayMongo")是一个专门为PlayFramework
Wesley13 Wesley13
3年前
vertx的HttpServer模块
StartHttpServer/启动HttpServermultiinstances采用synchronized防止线程安全问题addHandlers方法是actor模式的实现(EventLoopPoolSizeinstances
Wesley13 Wesley13
3年前
IO相关模块摘抄
FileobjectsareimplementedusingC’sstdiopackageandcanbecreatedwiththebuiltinopen()functioncStringIO.StringIO(\s\) UnliketheStringIOmodule,thismoduleisn
Wesley13 Wesley13
3年前
python的stat模块
!/usr/bin/envpythonencoding:UTF8importos,time,statfileStatsos.stat('test.txt')获取文件/目录的状态fileInfo
Stella981 Stella981
3年前
Python 安装requests模块
hony@honyvirtualmachine:~$sudopipinstallrequestsIn\1\:importrequests;In\2\:rrequests.get('http://www.baidu.com')In\3\:printr.content