Platform.sh User Documentation

Custom Redis versions

Upsun Beta

Access our newest offering - Upsun!

Get your free trial by clicking the link below.

Get your Upsun free trial

Redis is a popular structured key-value service, supported by Platform.sh. It’s frequently used for caching.

Install PhpRedis Anchor to this heading

The PhpRedis extension is available on Platform.sh’s PHP container images. The extension has been known to break its API between versions when removing deprecated functionality. The version available on each application image is the latest available at the time that PHP version was built, which if your app is sensitive to PhpRedis versions may not be ideal.

It may happen that the version of the PhpRedis extension available for your PHP version isn’t compatible with your app and upgrading your app isn’t feasible. If so, use the following script as an alternative to download and compile a precise version of the extension.

To ease the installation of a customer version of PhpRedis, use a PhpRedis install script. Invoke this script from your build hook, specifying a version. Any tagged version of the library is acceptable:

.platform.app.yaml
hooks:
    build: |
        set -e
        # Install PhpRedis v5.3.7:
        curl -fsS https://raw.githubusercontent.com/platformsh/snippets/main/src/install-phpredis.sh | { bash /dev/fd/3 5.3.7 ; } 3<&0        

Install Relay Anchor to this heading

Relay is a Redis client similar to PhpRedis and Predis. It’s intended to be a drop-in replacement for those libraries.

That PHP extension is also a shared in-memory cache like APCu. All retrieved keys are held in the PHP master process’ memory, which is shared across all FPM workers.

That means if the FPM Worker #1 fetches the users:count key from Redis, all other FPM workers instantaneously retrieve that key from Relay without having to communicate with Redis.

To ease the installation of a customer version of Relay, use the Relay install script. Invoke this script from your build hook, specifying a version. Any tagged version of the library is acceptable:

.platform.app.yaml
hooks:
    build: |
        set -e
        # Install Relay v0.6.0:
        curl -fsS https://raw.githubusercontent.com/platformsh/snippets/main/src/install-relay.sh | { bash /dev/fd/3 v0.6.0 ; } 3<&0        

Change extension or version Anchor to this heading

To change the Redis extension or the version you are using, update the build hook and clear the build cache: platform project:clear-build-cache.

The new version is not be used until you clear the build cache.

There’s no need to declare the extension in the runtime block. That’s only for pre-built extensions.

What these scripts do Anchor to this heading

  1. Download the Relay/PhpRedis source code.
  2. Check out the version specified in the build hook.
  3. Compile the extension.
  4. Copy the resulting relay.so/redis.so file to your app root.
  5. Add a line to the php.ini file in your app root to enable the extension, creating the file if necessary.

If the script doesn’t find a $PLATFORM_CACHE_DIR directory defined, it exits silently. So if you run the build hook locally, it has no effect.

Is this page helpful?