Error memcache after upgrade from 11.0.2 to 11.0.3

Nextcloud version (eg, 10.0.2): 11.0.3
Operating system and version (eg, Ubuntu 16.04): libreelec/docker
Apache or nginx version (eg, Apache 2.4.25): nginx
PHP version (eg, 5.6): 7.0.16
Is this the first time you’ve seen this error?: yes

Can you reliably replicate it? (If so, please outline steps):
just open NextCloud

The issue you are facing:
Administrator->logging full of enties:
PHP Startup: Unable to load dynamic library '/usr/lib/php7/modules/memcached.so' - Error loading shared library /usr/lib/php7/modules/memcached.so: No such file or directory at Unknown#0

memcache.distributed is not enabled in config.php so why it looks for it ? There was no such errors in 11.0.2.

The output of your Nextcloud log in Admin > Logging:
PHP Startup: Unable to load dynamic library '/usr/lib/php7/modules/memcached.so' - Error loading shared library /usr/lib/php7/modules/memcached.so: No such file or directory at Unknown#0

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php $CONFIG = array ( 'instanceid' => 'xxxx', 'passwordsalt' => 'xxxxxxxx', 'secret' => 'fyyyyyy', 'memcache.local' => '\OC\Memcache\APCu', 'trusted_domains' => array ( 0 => 'aaa.bbb.ccc.net', 1 => '192.168.1.10', ), 'datadirectory' => '/config/www/nextcloud/data', 'overwrite.cli.url' => 'https://192.168.1.10', 'dbtype' => 'mysql', 'version' => '11.0.3.2', 'dbname' => 'nextcloud', 'dbhost' => '192.168.1.10:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'dbuser' => 'xxxx', 'dbpassword' => 'yyyy', 'logtimezone' => 'UTC', 'installed' => true, 'mail_smtpmode' => 'smtp', 'mail_smtpsecure' => 'tls', 'mail_from_address' => 'xxxxx', 'mail_domain' => 'gmail.com', 'mail_smtpauthtype' => 'LOGIN', 'mail_smtpauth' => 1, 'mail_smtphost' => 'smtp.gmail.com', 'mail_smtpport' => '587', 'mail_smtpname' => 'xxxxx', 'mail_smtppassword' => 'xxxx', 'maintenance' => false, 'theme' => '', 'loglevel' => 2, );

If still relevant
This path won’t exsist it must be /usr/lib/php/7.x/modules/memcached.so
x = your version. Example if you use php 7.2 you must write /usr/lib/php/7.2/modules/memcached.so