aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cache
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11305] Extract hook finder from cache service.Oleg Pudeyev2013-01-021-30/+0
| | | | | | | Unlike most other things in cache service, hook finder does not need a database connection. PHPBB3-11305
* [ticket/11037] Add/update docblocks.Oleg Pudeyev2012-12-261-0/+33
| | | | PHPBB3-11037
* [ticket/11037] Eliminate globals from cache service.Oleg Pudeyev2012-12-241-42/+34
| | | | PHPBB3-11037
* [ticket/11037] Eliminate global $db usage in cache drivers.Oleg Pudeyev2012-12-204-11/+8
| | | | | | | 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/10103] $rv had too few characters.Oleg Pudeyev2012-12-041-3/+3
| | | | PHPBB3-10103
* [ticket/10103] Convert the rest of the tree to flock class.Oleg Pudeyev2012-12-041-5/+11
| | | | PHPBB3-10103
* [ticket/9983] Empty line by request.Oleg Pudeyev2012-12-021-0/+1
| | | | PHPBB3-9983
* [ticket/9983] Add redis cache driver tests.Oleg Pudeyev2012-12-011-1/+26
| | | | | | | | | | | In order to not overwrite data in default redis store, at least one of redis host or post must be explicitly specified. Redis cache driver constructor has been modified to accept host and port as parameters. This was not added to public API as there are more parameters being passed via global constants. PHPBB3-9983
* Merge PR #974 branch 'bantu/ticket/10875' into developOleg Pudeyev2012-11-304-9/+47
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bantu/ticket/10875: [ticket/10875] tests/cache/cache_test.php: Use single quotes where possible. [ticket/10875] Test for null cache driver and sql cache. [ticket/10875] Revise sql cache test. [ticket/10875] Must return query result on failure. [ticket/10875] More documentation. [ticket/10875] Spelling fix. [ticket/10875] Add docblocks for phpbb_cache_driver_interface [ticket/10875] Add comment about cache's sql_load() method. [ticket/10875] Fix logic in phpbb_cache_driver_file::sql_save(). [ticket/10875] Fix phpbb_mock_cache::sql_save() to return $query_result. [ticket/10875] Fix return value of phpbb_cache_driver_null::sql_save(). [ticket/10875] Remove useless assignment from phpbb_cache_driver_memory.
| * [ticket/10875] Must return query result on failure.Oleg Pudeyev2012-11-301-1/+1
| | | | | | | | PHPBB3-10875
| * [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 logic in phpbb_cache_driver_file::sql_save().Andreas Fischer2012-10-301-2/+2
| | | | | | | | | | | | | | | | Previously (develop-olympus) $query_result was passed via reference into sql_save(). Now the (possibly changed) result is returned by value. Adjust logic to take this change into account correctly. PHPBB3-10875
| * [ticket/10875] Fix return value of phpbb_cache_driver_null::sql_save().Andreas Fischer2012-10-301-0/+1
| | | | | | | | | | | | | | phpbb_cache_driver_null::sql_save() has to return $query_result as is instead of null. PHPBB3-10875
| * [ticket/10875] Remove useless assignment from phpbb_cache_driver_memory.Andreas Fischer2012-10-301-2/+0
| | | | | | | | | | | | | | sql_save() no longer takes $query_result as a reference, thus this assignment is a no-op. PHPBB3-10875
* | Merge branch 'develop-olympus' into developAndreas Fischer2012-11-296-9/+9
| | | | | | | | | | * develop-olympus: [ticket/11227] @return void -> @return null in develop-olympus.
* | [feature/controller] Remove dumped container when cache is purgedDavid King2012-11-162-0/+2
| | | | | | | | PHPBB3-10864
* | [ticket/11199] Match cache purge container files against container_*Igor Wiedler2012-11-152-2/+2
| | | | | | | | | | | | | | Previously it was matching against only container*, checking for the underscore is consistent with the other checks. PHPBB3-11199
* | [ticket/11199] Revert merge of 'marc1706/ticket/11199' into developOleg Pudeyev2012-11-142-2/+2
| | | | | | | | | | | | | | | | | | | | This reverts commit 303fc646adf9104d7c82cf8bcebbc8fc0d328624, reversing changes made to 9c28470ad7b45c10ce3a32065650e4b17f9f27ea. The correct fix should be to alter the container file name to start with container_ prefix. PHPBB3-11199
* | [ticket/11199] Cache purge does not remove dumped containerMarc Alexander2012-11-142-2/+2
| | | | | | | | PHPBB3-11199
* | [feature/compiled-dic] Split if() over multiple lines for improved readabilityDavid King2012-11-102-2/+10
| | | | | | | | PHPBB3-11152
* | [feature/compiled-dic] Compile the DI Container into a cached classDavid King2012-11-102-2/+2
|/ | | | PHPBB3-11152
* Merge remote-tracking branch 'github-igorw/feature/dic' into developNils Adermann2012-09-011-42/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * github-igorw/feature/dic: (35 commits) [feature/dic] Spaces to tabs, add useless docblocks [feature/dic] Remove unneeded newline [feature/dic] Add a doc block for the prune_forum cron task forum_data [feature/dic] Update composer.lock to symfony/* RC1 [feature/dic] Fix re-ordering of services [feature/dic] Fix parse errors [feature/dic] Add docblock for cron_manager::wrap_task() [feature/dic] Make cron task attributes protected, one per line [feature/dic] Coding style: Braces [feature/dic] Re-order services alphabetically [feature/dic] Remove duplicate event-dispatcher dependency [feature/dic] Adjust installer script to work with partially configured container [feature/dic] Generate full cache driver class name on fresh install [feature/dic] Adjust cache driver class name for BC [feature/dic] Rename {phpEx => php_ext} for consistency [feature/dic] Add trailing newline to htaccess [feature/dic] Require symfony/* 2.1.*, tabs instead of spaces, --dev lock file [feature/dic] Load services from extensions [feature/dic] Introduce DI processors instead of abusing compiler passes [feature/dic] Add dbal_ class prefix to dbal.driver.class ...
| * Merge remote-tracking branch 'upstream/develop' into feature/dicIgor Wiedler2012-08-255-12/+11
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (259 commits) [prep-release-3.0.11] Bumping version number for 3.0.11 final. [feature/php-events] Fix doc of core.viewonline_overwrite_location [feature/php-events] Fix doc of core.user_set_default_group [feature/php-events] Fix doc of core.generate_smilies_after [feature/php-events] Fix doc of core.delete_user_after [feature/php-events] Fix doc of core.delete_user_before [feature/php-events] Fix doc of core.update_username [feature/php-events] Fix doc of core.memberlist_prepare_profile_data [feature/php-events] Fix doc and position of viewonline_overwrite_location [feature/php-events] Fix doc of core.viewtopic_get_post_data [feature/php-events] Fix doc of core.viewtopic_cache_guest_data [ticket/11061] Add the --dev flag to the composer instructions in README [ticket/11060] Make sure pyrus can install everything on travis [ticket/11059] Use https for the README logo [feature/php-events] Fix acp_manage_forums_update_data_before and is_new_forum [feature/php-events] Fix core.acp_manage_forums_update_data_after vars [ticket/11032] fix language of error displayed [ticket/11052] update search backend constructor everywhere [ticket/11052] pass parametes to search construct while posting [ticket/11054] Fixed $config var description ... Conflicts: phpBB/includes/cron/task/core/tidy_cache.php phpBB/includes/cron/task/core/tidy_search.php
| * \ Merge branch 'develop' into feature/dicIgor Wiedler2012-07-211-33/+22
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (441 commits) [feature/new-tz-handling] Don't use global user but make it a parameter [feature/new-tz-handling] Fix size of suggestion button in chrome [feature/new-tz-handling] Fall back to UTC, if the timezone is invalid [feature/new-tz-handling] Add previous selected value to validation if valid [feature/new-tz-handling] Display suggestion when a different value is selected [ticket/10998] Add border-radius to forum rules block - prosilver [feature/new-tz-handling] Remove additional marking of selected items [feature/new-tz-handling] Move update helper function to new class [feature/new-tz-handling] Fix unit test [feature/new-tz-handling] Delete old variable which is not used anymore [feature/new-tz-handling] Rename $user->tz back to $user->timezone [feature/pagination-as-list] New parameter for name of start var [feature/pagination-as-list] Updates for nils comments [feature/pagination-as-list] Rename and deprecate functions [feature/pagination-as-list] Various fixes and improvements [ticket/10968] Render pagination within the template [feature/new-tz-handling] Remove "timezone might be numeric" [feature/new-tz-handling] Add function to update the timezone [feature/new-tz-handling] Correctly update user and board timezones on update [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL ... Conflicts: phpBB/common.php phpBB/composer.json phpBB/composer.lock tests/cron/task_provider_test.php
| * | | [feature/dic] Remove cache factory, now handled by DICIgor Wiedler2012-03-311-42/+0
| | | | | | | | | | | | | | | | PHPBB3-10739
* | | | Merge remote-tracking branch 'github-igorw/ticket/11082' into developNils Adermann2012-09-011-0/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | * github-igorw/ticket/11082: [ticket/11082] Remove executable permission from redis driver file
| * | | | [ticket/11082] Remove executable permission from redis driver fileIgor Wiedler2012-09-011-0/+0
| | |_|/ | |/| | | | | | | | | | PHPBB3-11082
* | | | [ticket/11083] Mark memory cache driver as abstractIgor Wiedler2012-09-011-1/+1
|/ / / | | | | | | | | | PHPBB3-11083
* | | Merge pull request #932 from EXreaction/ticket/10875Nils Adermann2012-08-144-4/+8
|\ \ \ | | | | | | | | Ticket/10875
| * | | [ticket/10875] Return $query_id from sql_saveNathan Guse2012-08-062-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Have to return the $query_id from sql_save so that the results can be pulled Updated cache test to do some basic sql cache testing. PHPBB3-10875
| * | | [ticket/10875] Fix SQL CachingNathan Guse2012-07-304-4/+4
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/11029] Remove $reparse variableNathan Guse2012-08-061-7/+2
| | | | | | | | | | | | | | | | | | | | | Its only set to false, then true in one case, and only checked once. So remove it because it is unnecessary. PHPBB3-11029
* | | [ticket/11029] Return $parsed_array (may have loaded from the cache)Nathan Guse2012-08-061-1/+1
| | | | | | | | | | | | | | | | | | | | | Even if the file does not exist, it may be in the cache, so return $parsed_array just in case PHPBB3-11029
* | | [ticket/11029] Cache obtain_cfg_items should return empty array on failureNathan Guse2012-07-301-1/+1
|/ / | | | | | | | | | | | | | | | | | | continue was used where it should not have been, causing a fatal error This file is loaded on every page to check if style.cfg has changed. If it has not, the user is not affected, so if it does not exist, the user should not be affected either. PHPBB3-11029
* | [ticket/10743] Changing obtain_cfg_itemsVjacheslav Trushkin2012-06-111-33/+22
|/ | | | | | | Changing obtain_cfg_items to work only with style because other components no longer exist PHPBB3-10743
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-3113-22/+13
| | | | PHPBB3-9916
* Merge branch 'develop-olympus' into developIgor Wiedler2011-06-111-12/+2
| | | | | | | | * develop-olympus: [ticket/10110] Remove multi-server syntax from Redis ACM. Conflicts: phpBB/includes/cache/driver/redis.php
* [feature/attachment-management-no-reassignment] Handle privacy and some more.rxu2011-04-241-0/+1
| | | | | | | | | - restrict files info for PM attachments; - add an option to resync files stats if wrong; - replace post_id sorting with post type (PM/regular post) one; - some language fixes. PHPBB3-9721
* [feature/redis] Add Redis cache driver using phpredis extensionEric2011-03-301-0/+150
| | | | PHPBB3-10110
* Merge branch 'develop-olympus' into developAndreas Fischer2011-02-011-2/+2
| | | | | * develop-olympus: [ticket/10014] Clearly indicate fatal errors in file acm.
* Merge branch 'task/naderman/config-class' into developAndreas Fischer2011-01-121-66/+40
|\ | | | | | | | | | | | | | | | | | | * task/naderman/config-class: [task/config-class] Do not create multiple cache driver instances. [task/config-class] Add an attribute for the table name in phpbb_config_db. [task/config-class] Correctly merge cached config with dynamically loaded data. [task/config-class] Always specify the config table to use. [task/config-class] Fix db config constructor param order [task/config-class] Implemented a config class to replace the global array.
| * [task/config-class] Do not create multiple cache driver instances.Nils Adermann2011-01-121-23/+42
| | | | | | | | | | | | | | Retrieve the driver from the service instead of creating new ones over and over from the factory. PHPBB3-9988
| * [task/config-class] Implemented a config class to replace the global array.Nils Adermann2011-01-101-45/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a phpbb_config class which simply holds an array and does not persist any data. It implements ArrayAccess, Countable and IteratorAggregate to allow regular use of configuration as if it was still an array. The phpbb_config_db class depends on an instance of the dbal and a cache driver. It obtains the configuration data from cache and database as necessary and persists data to the database. The functions set_config and set_config_count remain for backward compatability but they only call methods on the new config class now instead of directly manipulating the database and cache. PHPBB3-9988
* | [task/acm-refactor] Refactor WinCache ACM moduleIgor Wiedler2011-01-111-0/+78
|/ | | | PHPBB3-9983
* [task/acm-refactor] Cleaning up left over mentions of ACM and fixing tests.Nils Adermann2011-01-091-15/+6
| | | | PHPBB3-9983
* [task/acm-refactor] Refactor the ACM classes to have a common interface.Igor Wiedler2011-01-0911-0/+2385
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