I'm migrating our website from an older Centos server to a new EC2 instance (Amazon Linux 2, aarch64). I'd like to install both the LAMP stack and memcached on the EC2 instance stack; which is the setup we had on our old server
The amzn2extra-php7.4 repo has a package php-pecl-memcached.aarch64, but there is no corresponding package for either amzn2extra-php8.0 or amzn2extra-php8.1
All the guides I have found online are for PHP 7.4 and seem to make use of php-pecl-memcached, and I'd rather not downgrade to a PHP version that is no longer supported
I did find some documentation on how to install the Amazon Elasticache extension, which supports memcached, but that appears to be designed only to connect with a separate managed cluster, and I want to install memcached on the same machine
Is there a workaround?