diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-25 09:25:49 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-25 09:25:49 +0000 |
commit | 801756e7e69cfc8a22d8c1c612a31391872c35bc (patch) | |
tree | 3d70f6ee8d720628bf87039193a4fac07a1e6613 /modules/node/node.schema | |
parent | 92914245608123f9e011d1e9d4cf8c057bc9e8a8 (diff) | |
download | brdo-801756e7e69cfc8a22d8c1c612a31391872c35bc.tar.gz brdo-801756e7e69cfc8a22d8c1c612a31391872c35bc.tar.bz2 |
#111127 by chx: cache node_load(), so heavy operations loading data from external sources and only invoked once (note that you should do everything dynamic in the view op, not the load op)
Diffstat (limited to 'modules/node/node.schema')
-rw-r--r-- | modules/node/node.schema | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/node/node.schema b/modules/node/node.schema index 30e70bf9c..76e942341 100644 --- a/modules/node/node.schema +++ b/modules/node/node.schema @@ -105,6 +105,7 @@ function node_schema() { 'primary key' => array('type'), ); + $schema['cache_node'] = drupal_get_schema_unprocessed('system', 'cache'); + return $schema; } - |