summaryrefslogtreecommitdiff
path: root/includes/cache-install.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-30 08:16:55 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-30 08:16:55 +0000
commit949ccddb91397c263a79e8dc144c172baa41452f (patch)
tree1d63c72055cc55c9fd7d3875506f2ad5144d0c77 /includes/cache-install.inc
parent682b9dc3bb3a7d159570154f35476261f49c2e24 (diff)
downloadbrdo-949ccddb91397c263a79e8dc144c172baa41452f.tar.gz
brdo-949ccddb91397c263a79e8dc144c172baa41452f.tar.bz2
- Patch #666024 by boombatower, mcrittenden: code and documentation clean-ups.
Diffstat (limited to 'includes/cache-install.inc')
-rw-r--r--includes/cache-install.inc19
1 files changed, 12 insertions, 7 deletions
diff --git a/includes/cache-install.inc b/includes/cache-install.inc
index 56bf3eb52..e0772bea7 100644
--- a/includes/cache-install.inc
+++ b/includes/cache-install.inc
@@ -2,13 +2,18 @@
// $Id$
/**
- * A stub cache implementation to be used during the installation
- * process when database access is not yet available. Because Drupal's
- * caching system never requires that cached data be present, these
- * stub functions can short-circuit the process and sidestep the
- * need for any persistent storage. Obviously, using this cache
- * implementation during normal operations would have a negative impact
- * on performance.
+ * @file
+ * Provides a stub cache implementation to be used during installation.
+ */
+
+/**
+ * A stub cache implementation to be used during the installation process.
+ *
+ * The stub implementation is needed when database access is not yet available.
+ * Because Drupal's caching system never requires that cached data be present,
+ * these stub functions can short-circuit the process and sidestep the need for
+ * any persistent storage. Obviously, using this cache implementation during
+ * normal operations would have a negative impact on performance.
*/
class DrupalFakeCache extends DrupalDatabaseCache implements DrupalCacheInterface {
function get($cid) {