├── Plugin.php ├── README.md └── driver ├── cache.interface.php ├── typecho_memcache.class.php ├── typecho_memcached.class.php ├── typecho_mysql.class.php └── typecho_redis.class.php /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/README.md -------------------------------------------------------------------------------- /driver/cache.interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/driver/cache.interface.php -------------------------------------------------------------------------------- /driver/typecho_memcache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/driver/typecho_memcache.class.php -------------------------------------------------------------------------------- /driver/typecho_memcached.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/driver/typecho_memcached.class.php -------------------------------------------------------------------------------- /driver/typecho_mysql.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/driver/typecho_mysql.class.php -------------------------------------------------------------------------------- /driver/typecho_redis.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpgao/TpCache/HEAD/driver/typecho_redis.class.php --------------------------------------------------------------------------------