[PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Terry Ellison
On 23/03/13 06:29, Laruence wrote: since Zend O+ has bundled into PHP since 5.5, and O+ is really a bit faster than APC, so people may want to migrate to O+, but there is no User Data Cache in O+ ... Laurence, you are correct that O+ doesn't provide data caching, but what about

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Matīss Roberts Treinis
Memcached is distributed caching system, where as APC's user data cache is not. Memcached requires separate server instance (memcached) to operate. APC does not. Also, APC's user cache is 5+ times faster than memcached. If some extension is to provide this functionality, it has to be as close as

Re: [PHP-DEV] PHP5.5 beta 1 is ready - Fedora RPM

2013-03-23 Thread Remi Collet
Le 21/03/2013 14:10, Julien Pauli a écrit : Hi Internals, PHP 5.5.0 Beta 1 has been released for testing. A few months ago, PHP 5.5 have been approved as a Fedora 19 feature [1] Despite the delay due to Zend OPcache merge, I still think (and hope) PHP and Fedora roadmap [2][3] are still

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Terry Ellison
On 23/03/13 09:46, Matīss Roberts Treinis wrote: Memcached is distributed caching system, where as APC's user data cache is not. Memcached requires separate server instance (memcached) to operate. APC does not. Yes, but there is nothing to stop an admin of an application-dedicated system or VM

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Laruence
On Sat, Mar 23, 2013 at 6:31 PM, Terry Ellison te...@ellisons.org.uk wrote: On 23/03/13 09:46, Matīss Roberts Treinis wrote: Memcached is distributed caching system, where as APC's user data cache is not. Memcached requires separate server instance (memcached) to operate. APC does not. Yes,

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Remi Collet
Le 23/03/2013 12:00, Laruence a écrit : and to be honest, I think user data cache and opcodes cache should be separated into different modules.. Big +1 -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Stefan Neufeind
On 03/23/2013 12:07 PM, Remi Collet wrote: Le 23/03/2013 12:00, Laruence a écrit : and to be honest, I think user data cache and opcodes cache should be separated into different modules.. Big +1 And a second big +1 which sums up to almost 3.14 :-) Regards, Stefan -- PHP

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Sherif Ramadan
On Sat, Mar 23, 2013 at 7:00 AM, Laruence larue...@php.net wrote: On Sat, Mar 23, 2013 at 6:31 PM, Terry Ellison te...@ellisons.org.uk wrote: On 23/03/13 09:46, Matīss Roberts Treinis wrote: Memcached is distributed caching system, where as APC's user data cache is not. Memcached

Re: [PHP-DEV] Re: [PECL-DEV] [Proposal] New Extension Yac (a user data cache base on shared memory without locks)

2013-03-23 Thread Daniel Macedo
This looks great, I'm taking a look and testing it!

Re: [PHP-DEV] PHP5.5 beta 1 is ready - Fedora RPM

2013-03-23 Thread Michael Wallner
On 23 March 2013 11:14, Remi Collet r...@fedoraproject.org wrote: Le 21/03/2013 14:10, Julien Pauli a écrit : Hi Internals, PHP 5.5.0 Beta 1 has been released for testing. A few months ago, PHP 5.5 have been approved as a Fedora 19 feature [1] Despite the delay due to Zend OPcache merge, I

Re: [PHP-DEV] PHP5.5 beta 1 is ready

2013-03-23 Thread Ondřej Surý
On Fri, Mar 22, 2013 at 10:04 PM, Stas Malyshev smalys...@sugarcrm.comwrote: Hi! just FYI, there's some non-portable code in Zend OpCache (alpha5 was built just fine), which prevents building of php5 beta1 on non-Linux systems: FreeBSD: https://bugs.php.net/bug.php?id=64490 Hurd

Re: [PHP-DEV] PHP5.5 beta 1 is ready

2013-03-23 Thread Derick Rethans
On Thu, 21 Mar 2013, Julien Pauli wrote: Please test the release carefully and report any bugs. Don't forget to activate Zend OPCache and test your code against it. Report any bug you could find. I'm having issues with installing PEAR: Saving to: ‘pear/install-pear-nozlib.phar’

Re: [PHP-DEV] PHP5.5 beta 1 is ready

2013-03-23 Thread Ferenc Kovacs
On Sat, Mar 23, 2013 at 4:53 PM, Derick Rethans der...@php.net wrote: On Thu, 21 Mar 2013, Julien Pauli wrote: Please test the release carefully and report any bugs. Don't forget to activate Zend OPCache and test your code against it. Report any bug you could find. I'm having issues

[PHP-DEV] Re: PHP5.5 beta 1 is ready

2013-03-23 Thread Pascal Chevrel
Le 21/03/2013 06:10, Julien Pauli a écrit : Hi Internals, PHP 5.5.0 Beta 1 has been released for testing. As you know, this code base is shipped with Zend OPCache. The packages can be found at: http://downloads.php.net/dsp and windows packages at http://windows.php.net/qa Please test

[PHP-DEV] Continuous Integration Atomic Deploys and PHP 5.5

2013-03-23 Thread Rasmus Lerdorf
One of the things I have been helping companies with for the past couple of years is sorting through the complexities of deploying PHP code with the least possible interruption to the running site. With APC you can achieve atomic deploys without a server restart and without clearing the opcode

Re: [PHP-DEV] Re: PHP5.5 beta 1 is ready

2013-03-23 Thread Pierre Joye
hi! On Sat, Mar 23, 2013 at 5:46 PM, Pascal Chevrel pascal.chev...@free.fr wrote: Is there some kind of organized testing programme to test all the popular frameworks, CMSes and libraries? Like, if in addition to testing my own applications, I test the php applications provided by 3rd parties

Re: [PHP-DEV] Continuous Integration Atomic Deploys and PHP 5.5

2013-03-23 Thread Ferenc Kovacs
On Sat, Mar 23, 2013 at 7:57 PM, Rasmus Lerdorf ras...@lerdorf.com wrote: One of the things I have been helping companies with for the past couple of years is sorting through the complexities of deploying PHP code with the least possible interruption to the running site. With APC you can

Re: [PHP-DEV] Continuous Integration Atomic Deploys and PHP 5.5

2013-03-23 Thread Rasmus Lerdorf
On 03/23/2013 03:01 PM, Ferenc Kovacs wrote: realpath the document root(which is a symlink to the actual release directory) from your index.php/bootstrap file and use that as a base path for making absolute paths everywhere? that way the requests started before the symlink switch will continue

[PHP-DEV] OPcache precompiled dll's for older Windows versions

2013-03-23 Thread Jan Ehrhardt
Would it be an idea to put several flavours of php_opcache.dll at http://windows.php.net/downloads/pecl/snaps/ These are quite 'old': http://windows.php.net/downloads/pecl/snaps/ZendOptimizerPlus/7.0.1-dev/ See the requests for such dll's at http://www.apachelounge.com/viewtopic.php?t=5242#24199

Re: [PHP-DEV] Re: PHP5.5 beta 1 is ready

2013-03-23 Thread Jan Ehrhardt
Pierre Joye in php.internals (Sat, 23 Mar 2013 20:31:38 +0100): That would be awesome, our team does that too, with major apps and frameworks. Almost all reports get uploaded f.e. here (and higher dirs), for one revision: http://windows.php.net/downloads/snaps/ostc/pftt/PHP_5_5/r0d65a85/ How

Re: [PHP-DEV] PHP5.5 beta 1 is ready

2013-03-23 Thread Ferenc Kovacs
On Sat, Mar 23, 2013 at 5:02 PM, Ferenc Kovacs tyr...@gmail.com wrote: On Sat, Mar 23, 2013 at 4:53 PM, Derick Rethans der...@php.net wrote: On Thu, 21 Mar 2013, Julien Pauli wrote: Please test the release carefully and report any bugs. Don't forget to activate Zend OPCache and test

Re: [PHP-DEV] PHP5.5 beta 1 is ready

2013-03-23 Thread Ferenc Kovacs
On Sun, Mar 24, 2013 at 3:06 AM, Ferenc Kovacs tyr...@gmail.com wrote: On Sat, Mar 23, 2013 at 5:02 PM, Ferenc Kovacs tyr...@gmail.com wrote: On Sat, Mar 23, 2013 at 4:53 PM, Derick Rethans der...@php.net wrote: On Thu, 21 Mar 2013, Julien Pauli wrote: Please test the release