Skip to content

Commit

Permalink
feat: add memcached
Browse files Browse the repository at this point in the history
  • Loading branch information
izosik committed Nov 1, 2023
1 parent 95bb061 commit 855d1a6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
41 changes: 22 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,27 @@ Repository contains dist folder with generated basic PHP images and source code,

Enabled extensions by default:

| Extension | Description | Type |
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------ |
| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native |
| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native |
| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native |
| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native |
| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native |
| Extension | Description | Type |
|--------------------------------------------------------------|----------------------------------------------------------------------------------|--------|
| [intl](https://www.php.net/manual/en/book.intl.php) | Internationalization functions | native |
| [pcntl](https://www.php.net/manual/en/book.pcntl.php) | Process control | native |
| [sockets](https://www.php.net/manual/en/book.sockets.php) | Socket communication functions | native |
| [pdo_pgsql](https://www.php.net/manual/en/ref.pdo-pgsql.php) | PostgreSQL functions | native |
| [pdo_mysql](https://www.php.net/manual/en/ref.pdo-mysql.php) | Mysql functions | native |
| [opcache](https://www.php.net/manual/en/book.opcache.php) | Improves PHP performance by storing precompiled script bytecode in shared memory | native |
| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native |
| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native |
| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native |
| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native |
| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native |
| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl |
| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl |
| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl |
| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl |
| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl |
| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl |
| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl |
| [zip](https://www.php.net/manual/en/book.zip.php) | Read/write functions for ZIP archives | native |
| [bcmath](https://www.php.net/manual/en/book.bc.php) | For arbitrary precision mathematics | native |
| [exif](https://www.php.net/manual/en/book.exif.php) | Exchangeable image information | native |
| [gd](https://www.php.net/manual/en/book.image.php) | Image processing and manipulation library | native |
| [soap](https://www.php.net/manual/en/book.soap.php) | SOAP (Simple Object Access Protocol) functions | native |
| [redis](https://pecl.php.net/package/redis) | Functions for interfacing with Redis | pecl |
| [memcached](https://pecl.php.net/package/memcached) | Functions for interfacing with Memcached | pecl |
| [decimal](https://pecl.php.net/package/decimal) | Arbitrary precision floating-point decimal | pecl |
| [imagick](https://pecl.php.net/package/imagick) | ImageMagick library for image manipulation | pecl |
| [rdkafka](https://pecl.php.net/package/rdkafka) | Kafka client library for PHP | pecl |
| [amqp](https://pecl.php.net/package/amqp) | Advanced Message Queuing Protocol (AMQP) library | pecl |
| [protobuf](https://pecl.php.net/package/protobuf) | Protocol Buffers serialization format library | pecl |
| [yaml](https://pecl.php.net/package/yaml) | YAML (YAML Ain't Markup Language) library | pecl |

<br>

Expand Down Expand Up @@ -87,12 +88,14 @@ ext_native_enabled:

ext_pecl_enabled:
- redis
- memcached
- decimal
- imagick
- rdkafka
- amqp
- protobuf
- yaml

```

<br>
Expand Down
1 change: 1 addition & 0 deletions src/group_vars/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ ext_native_enabled:

ext_pecl_enabled:
- redis
- memcached
- decimal
- imagick
- rdkafka
Expand Down

0 comments on commit 855d1a6

Please sign in to comment.