Re: [PHP-DEV] Chunked output compression

2001-03-15 Thread Zeev Suraski
I managed to reproduce the crash - looks like I broke standard buffering with the high performance output compression patch... I'll look into it. Zeev At 04:59 15/3/2001, André Langhorst wrote: >>$x=str_repeat('t',6).''; >>function strlens($string){ >> //return str_replace("\n",'',$

Re: [PHP-DEV] Chunked output compression

2001-03-15 Thread Zeev Suraski
At 04:54 15/3/2001, André Langhorst wrote: >>Read: You can now efficiently have your outgoing PHP/HTTP traffic >>compressed with good compression ratios without sacrificing memory. >>Comments extremely welcome - and if people can also test it and let me >>know whether it works for them, it'd be

Re: [PHP-DEV] Chunked output compression

2001-03-14 Thread André Langhorst
> $x=str_repeat('t',6).''; > function strlens($string){ > //return str_replace("\n",'',$string); > sleep(3); > return $string; > } > > ob_start('strlens',128); > echo str_repeat($x,50); > ob_end_flush(); in addition this code crashes ;) dealing with these amounts of cras

Re: [PHP-DEV] Chunked output compression

2001-03-14 Thread André Langhorst
> Read: You can now efficiently have your outgoing PHP/HTTP traffic > compressed with good compression ratios without sacrificing memory. > > Comments extremely welcome - and if people can also test it and let me > know whether it works for them, it'd be great. Taking your example... >>ob_st