7,540
edits
Changes
OwnCloud
,→APCu
/etc/php-zts.d/40-apcu.ini
<pre>
# bekapcsolja a cache-t
apc.enabled=1
#hány memória caches legyen. (Akárcsak a redis-nél, itt is több különálló cache lehet)
apc.shm_segments=1
#memória mérete
apc.shm_size=5G
#fájméret amit cache-be rak
apc.max_file_size=1M
apc.stat=1
#Maximum number of files APC can store ( rotation).
apc.num_files_hint=200000
#Maximum number of users data entries that APC can store.
apc.user_entries_hint=20000
</pre>
Majd az owncloud config.php-be az alábbi sort kell elhelyezni:
<pre>
'memcache.local' => '\OC\Memcache\APC',