php扩展开发-笔记1

内存分配

为了避免写的不好的扩展浪费内存,ZE通过标记实现内部内存管理来表示持有。

persistent allocation 意味着分配的内存比一个页面请求持续更长时间。

non-persistent allocation 无论释放函数有没有调用,将被释放在为它分配内存的请求结束后。

理论上,一个依赖ZE在请求结束自动释放non-persistent内存的扩展是不被推荐的。内存分配将会保留更长时间,资源相关的内存不会像正常关机那样,它缺乏清理烂摊子的经验。

下面是几种内存分配的比较:

TraditionalNon-PersistentPersistent
malloc(count)
calloc(count, num)
emalloc(count)
ecalloc(count, num)
pemalloc(count, 1)*
pecalloc(count, num, 1)
strdup(str)
strndup(str, len)
estrdup(str)
estrndup(str, len)
pestrdup(str, 1)
pemalloc() & memcpy()
free(ptr)efree(ptr)pefree(ptr, 1)
realloc(ptr, newsize)erealloc(ptr, newsize)perealloc(ptr, newsize, 1)
malloc(count * num + extr)**safe_emalloc(count, num, extr)safe_pemalloc(count, num, extr)
The pemalloc() family include a ‘persistent’ flag which allows
them to behave like their non-persistent counterparts.
   For example:
emalloc(1234) is the same as pemalloc(1234,
0)

** safe_emalloc() and (in PHP 5) safe_pemalloc()
perform an additional check to avoid integer overflows

 

算得上是

转载于:https://www.cnblogs.com/zaric/archive/2012/09/19/2694388.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值