aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cache/driver/interface.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11037] Eliminate global $db usage in cache drivers.Oleg Pudeyev2012-12-201-1/+2
| | | | | | | The only time $db is needed in cache drivers is to navigate the result set in sql_save. Pass it as a parameter in that function. PHPBB3-11037
* [ticket/10875] More documentation.Oleg Pudeyev2012-11-301-3/+7
| | | | PHPBB3-10875
* [ticket/10875] Spelling fix.Oleg Pudeyev2012-11-301-2/+2
| | | | PHPBB3-10875
* [ticket/10875] Add docblocks for phpbb_cache_driver_interfaceIgor Wiedler2012-11-141-4/+33
| | | | PHPBB3-10875
* [ticket/10875] Add comment about cache's sql_load() method.Andreas Fischer2012-10-311-0/+6
| | | | PHPBB3-10875
* [ticket/10875] Fix SQL CachingNathan Guse2012-07-301-1/+1
| | | | | | | | | | | The sql_save function cannot take arguments by reference since it is called by call_user_func_array() Replace use of isset($cache->sql_rowset[$query_id]) with $cache->sql_exists Replace $cache->cache_dir with $cache->get_driver()->cache_dir PHPBB3-10875
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-1/+1
| | | | PHPBB3-9916
* [task/acm-refactor] Refactor the ACM classes to have a common interface.Igor Wiedler2011-01-091-0/+104
They are now refered to as cache drivers rather than ACM classes. The additional utility functions from the original cache class have been moved to the cache_service. The class loader is now instantiated without a cache instance and passed one as soon as it is constructed to allow autoloading the cache classes. PHPBB3-9983