gnu-social/plugins/DiskCache
Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0
Updated composer and translations

composer install --no-dev
composer dump-autoload --optimize
git add vendor/ --force
make updatepo
2021-07-18 12:49:17 +01:00
..
locale [VersionBump] 2.0.0beta0 2021-07-18 12:49:17 +01:00
DiskCachePlugin.php [RedisCache][DiskCache] Check if unserialize succeeded 2021-07-16 19:44:40 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00

README

The DiskCache plugin implements cache interface with disk files.

Installation
============
add "addPlugin('DiskCache');"
to the bottom of your config.php

Settings
========
root: Directory where to save cache data. Default /tmp

Example
=======
addPlugin('DiskCache', array(
    'root' => '/tmp'
));