Puppet Class: memcached::php

Defined in:
puppet/modules/memcached/manifests/php.pp

Overview

Class: memcached::php

This class configures a PHP extension that provides an API for communicating with the memcached key-value store.



6
7
8
9
10
11
12
13
# File 'puppet/modules/memcached/manifests/php.pp', line 6

class memcached::php {
    include ::apache

    package { 'php7.4-memcached':
        ensure => present,
        notify => Service['apache2'],
    }
}