meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| sw:owncloud [2020/04/23 07:48] – niziak | sw:owncloud [2020/04/29 21:23] (current) – niziak | ||
|---|---|---|---|
| Line 15: | Line 15: | ||
| Then try to open avatar file using link: [[https:// | Then try to open avatar file using link: [[https:// | ||
| + | |||
| + | ====== Redis ====== | ||
| + | |||
| + | Optional remove and purge PHP-APCU module. However OC docs recommends to keep it for local memcache, because it is faster than Redis. | ||
| + | <code bash> | ||
| + | sudo phpdismod apcu && sudo apt-get purge php-apcu -y | ||
| + | sudo apt-get install redis-server php-redis | ||
| + | sudo phpenmod redis | ||
| + | |||
| + | # restart PHP: php-fpm / Apache / Nginx | ||
| + | |||
| + | # Test module | ||
| + | php --ri redis | ||
| + | |||
| + | redis-server -v | ||
| + | |||
| + | </ | ||
| + | |||
| + | <file php | config.php> | ||
| + | ' | ||
| + | ' | ||
| + | ' | ||
| + | ' | ||
| + | ' | ||
| + | array ( | ||
| + | ' | ||
| + | ' | ||
| + | ' | ||
| + | ' | ||
| + | ), | ||
| + | </ | ||
| + | |||