Page MenuHomeDevCentral

Add APCu to docker/nginx-php-fpm
Closed, ResolvedPublic

Description

Move the APCu extension installation instructions from nasqueron/phabricator to nasqueron/nginx-php-fpm.

Event Timeline

A lot of PHP applications nowadays use APCu to explicitely cache user-level objects.

Currently, rDPHPFPM doesn't provide it and rDPHAB installs it.

As I'm deploying a test run of Cachet (see T545), I see it could use (like other Laravel based PHP applications) APCu as a cache. MediaWiki also uses it.

It seems standard enough we include it in our image.

dereckson triaged this task as Wishlist priority.
dereckson added a project: Docker images.
dereckson updated the task description. (Show Details)
dereckson raised the priority of this task from Wishlist to High.Nov 30 2015, 16:26

I raise the priority, as APCu beta offers a PHP 7 version, so new build of rDPHAB isn't currently possible.

pear config-set preferred_state beta && \
pecl install APCu

We should use:

pear config-set preferred_state stable && \
pecl install APCu
dereckson lowered the priority of this task from High to Wishlist.Nov 30 2015, 17:04

D96 takes care of the issue on nasqueron/phabricator, so we can decrease the priority.