- 浏览: 229480 次
最新评论
-
Poechant:
zx246212 写道LZ写的好哇,再问个,GC一般选取多少个 ...
JVM 深入笔记(3)垃圾标记算法 -
zx246212:
LZ写的好哇,再问个,GC一般选取多少个基类呢?如果一个大的项 ...
JVM 深入笔记(3)垃圾标记算法 -
yljf1314:
高性能Web服务器Nginx的配置与部署研究(1)Nginx简介及入门示例
文章列表
Eclipse CDT 导入 Makefile 构建的 C/C++ 工程
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 30th, 2012
我是在 Mac OS X 上使用的 Eclipse CDT,Linux 和 Windows 版本的也相类似,一般只是 Preference 的位置不同。
File -> New -> Makefile Project with Existing Code
选择源码目录,语言选择C语言。如果是 Li
- 2012-06-30 06:44
- 浏览 867
- 评论(0)
服务器后端开发系列——《开源RTMFP协议媒体服务器Cumulus》
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 28th, 2012
持续更新中⋯⋯
OpenRTMFP/Cumulus Primer(1)入门介绍与部署CumulusServer
OpenRTMFP/Cumulus Primer(2)用Lua编写HelloWorld应用扩展CumulusServer
- 2012-06-28 20:14
- 浏览 717
- 评论(0)
服务器后端开发系列——《开源RTMFP协议媒体服务器Cumulus》
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 28th, 2012
持续更新中⋯⋯
OpenRTMFP/Cumulus Primer(1)入门介绍与部署CumulusServer
OpenRTMFP/Cumulus Primer(2)用Lua编写HelloWorld应用扩展CumulusServer
- 2012-06-28 20:14
- 浏览 545
- 评论(0)
OpenRTMFP/Cumulus Primer(20)Cumulus的一个线程启动 Bug
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 25th, 2012
Cumulus 中的线程都是继承自 Startable,在其中封装 Poco::Thread 成员,使得一些有关线程的操作更方便。Startable 中的 start 函数如下:
- 2012-06-25 10:56
- 浏览 320
- 评论(0)
AS3 TCP Socket 拆包
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
微博:weibo.com/lauginhom
日期:June 2nd, 2012
在 AS3 中的 Socket 只有 TCP 一种方式,而 TCP 就必然面临拆包的问题。对于 Windows、Linux、Mac等操作系统的不同网络模型,Flash 程序在不拆包下的运行糟糕程度不一样,我的亲身体会是 Windows 的网络模型会积攒更大的缓冲区数据让 Flash TCP Socket ...
- 2012-06-25 10:27
- 浏览 447
- 评论(0)
高性能Web服务器Nginx的配置与部署研究(16)小议location匹配模式优先级
Author: 柳大·Poechant(钟超)
Email: zhongchao.ustc#gmail.com(#->@)
Blog:Blog.CSDN.net/Poechant
Date: June 20th, 2012
1 location 的匹配符
1.1 等于匹配符:
- 2012-06-20 00:27
- 浏览 411
- 评论(0)
C++ Programming Error/Warning Analysis (2) extra qualification
Author:柳大·Poechant(钟超)
Email:zhongchao.ustc#gmail.com (# -> @)
Blog:Blog.CSDN.net/Poechant
Date:May 9th, 2012
Explanation
实例:
- 2012-06-19 15:19
- 浏览 411
- 评论(0)
Classical 10 Examples for learning AWK
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 9th, 2012
Example 1: Formatting Fields Into Columns
- 2012-06-14 08:17
- 浏览 485
- 评论(0)
解剖Nginx·模块开发篇(1)跑起你的 Hello World 模块!
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 2nd, 2012
1 学习 Nginx 模块开发需要有哪些准备?
需要的预备知识不多,有如下几点:
有过一些 C 语言的编程经历;
知道 Nginx 是干嘛的,并有过编写或改写 Nginx 的配置文件的经历。
解剖Nginx·模块开发篇(6)配置文件config入门
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 13th, 2012
本文介绍 config 文件的初级写法,作为入门。首先你要知道 config 其实就是一个 shell 脚本,是在
- 2012-06-13 00:44
- 浏览 820
- 评论(0)
OpenRTMFP/Cumulus Primer(19)独立使用CumulusLib时的线程安全Bug
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 7nd, 2012
OpenRTMFP/Cumulus 提供了 CumulusLib 可以供其他 RTMFP 应用使用,而不局限于 CumulusServer。
一般来说,Thread A 会准备好要 push 的消息,然后 Thread A 向消息队列 push 消息。
但是 CumulusLib 中实 ...
- 2012-06-07 23:34
- 浏览 500
- 评论(0)
柳大的Linux游记·基础篇(5)select IO复用机制
Author: 柳大·Poechant(钟超)
Blog:blog.CSDN.net/Poechant
Email: zhongchao.ustc#gmail.com (#->@)
Date: March 13th, 2012
Copyright © 柳大·Poechant
1 基本原理
- 2012-06-03 13:28
- 浏览 556
- 评论(0)
解剖Nginx·模块开发篇(5)解读内置非默认模块 ngx_http_stub_status_module
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 3nd, 2012
1 Background
ngx_http_stub_status_module 是一个 Nginx 的内 ...
- 2012-06-03 12:51
- 浏览 387
- 评论(0)
解剖Nginx·模块开发篇(4)模块开发中的命名规则和模块加载与运行流程
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 2nd, 2012
1 命名规则
1.1 基本变量
- 2012-06-03 12:51
- 浏览 279
- 评论(0)
解剖Nginx·模块开发篇(3)ngx_http_hello_world_module 模块的基本函数实现
作者:柳大·Poechant(钟超)
邮箱:zhongchao.ustc#gmail.com(# -> @)
博客:Blog.CSDN.net/Poechant
日期:June 2nd, 2012
还记得我们定义过一个结构体如下吗?
- 2012-06-03 12:50
- 浏览 455
- 评论(0)