摘要:Linux TCP Performance Tuning News Recommended Books Linux performance bottlenecks Troubleshooting Linux Performance ethtool Introduction Optimization
阅读全文
开源、架构、Linux C/C++/python AI BI 运维开发自动化运维。 春风桃李花 秋雨梧桐叶。“力尽不知热 但惜夏日长”。夏不惜,秋不获。@ruiY--秦瑞python爬虫,C编程,嵌入式开发.hadoop大数据,桉树,onenebula云计算架构.linux运维及驱动开发. |
01 2018 档案
摘要:Linux TCP Performance Tuning News Recommended Books Linux performance bottlenecks Troubleshooting Linux Performance ethtool Introduction Optimization
阅读全文
摘要:#user nginx; worker_processes 5; #error_log /var/log/nginx/error.log warn; #pid /var/run/nginx.pid; events { worker_connections 10240; } http { include mime.types; de...
阅读全文
摘要:准备一台linux服务器。nginx官网:http://nginx.org/ 。在网上搜到大致用的是 ngx_stream_core_module 这个模块,这里你也可以关注一下官方文档中的其他模块都是做什么的,那么这有相关的启用配置说明,与示例配置。 第一句便是:该ngx_stream_core_
阅读全文
摘要:类对象 数组 初始化可以使用构造函数初始化,同时类有不同的构造函数,可以对类对象数组元素使用不同的构造函数;
阅读全文
该文被密码保护。
摘要:最近用VS2010+QT做了一个小软件,为了把它打包发布,查了很多资料,现在总结下,便于以后查看。 本方法不限于VS2010,也不限于QT,只要你运行你的代码得到exe之后,都可以参照本方法进行。 参考了很多链接一的方法,向其致谢。但是,其不够全面,有些设置也有遗漏,本文作为对其的一个补充。 步骤一
阅读全文
摘要:Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible. <class 'sqlalchemy.exc.Operationa
阅读全文
摘要:scheduler_default_filters=AllHostsFilterallow_resize_to_same_host=Trueallow_migrate_to_same_host=Truecpu_allocation_ration=158.5memory_allocation_rati
阅读全文
摘要:new与定位new 区别如下: 简单概括: new 分配的内存地址空间来自于heap堆,用完需使用delete 释放内存 定位new 使用的不是heap堆内存,因此不需要使用delete 释放 定位new 内存来自于已知的内存空间,定位new 不会寻找 内存空间,使用的是传入的内存空间,定位new也
阅读全文
|