function finder_fetch_cache_schema in Finder 7
Same name and namespace in other branches
- 6 finder.install \finder_fetch_cache_schema()
Gets a cache.module compatible table schema.
2 calls to finder_fetch_cache_schema()
- finder_schema in ./
finder.install - Implements hook_schema().
- finder_update_6100 in ./
finder.install - Implements hook_update_N().
File
- ./
finder.install, line 130 - Finder module install file.
Code
function finder_fetch_cache_schema($description = '') {
return array(
'description' => $description,
'fields' => array(
'cid' => array(
'description' => 'Primary Key: Unique cache ID.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'data' => array(
'description' => 'A collection of data to cache.',
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
),
'expire' => array(
'description' => 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'created' => array(
'description' => 'A Unix timestamp indicating when the cache entry was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'headers' => array(
'description' => 'Any custom HTTP headers to be added to cached data.',
'type' => 'text',
'not null' => FALSE,
),
'serialized' => array(
'description' => 'A flag to indicate whether content is serialized (1) or not (0).',
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'expire' => array(
'expire',
),
),
'primary key' => array(
'cid',
),
);
}