Fix for caching with compound keys: add Managed_DataObject::_allCacheKeys() to override the one in Memcached_DataObject.

Memcached_DataObject doesn't quite fully understand unique indexes, and can't properly build cache keys for compound unique or primary keys.
Managed_DataObject has more information in its schema data, so we can build a proper list.
This commit is contained in:
Brion Vibber
2011-09-28 18:32:43 -07:00
parent 797e187acb
commit 69765a0550
2 changed files with 37 additions and 22 deletions

View File

@@ -168,4 +168,41 @@ abstract class Managed_DataObject extends Memcached_DataObject
}
return $links;
}
/**
* Return a list of all primary/unique keys / vals that will be used for
* caching. This will understand compound unique keys, which
* Memcached_DataObject doesn't have enough info to handle properly.
*
* @return array of strings
*/
function _allCacheKeys()
{
$table = call_user_func(array(get_class($this), 'schemaDef'));
$ckeys = array();
if (!empty($table['unique keys'])) {
foreach ($table['unique keys'] as $idx => $fields) {
$val = array();
foreach ($fields as $name) {
$val[] = self::valueString($this->$name);
}
$keys = implode(',', $fields);
$vals = implode(',', $val);
$ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals);
}
}
if (!empty($table['primary key'])) {
$fields = $table['primary key'];
$val = array();
foreach ($fields as $name) {
$val[] = self::valueString($this->$name);
}
$keys = implode(',', $fields);
$vals = implode(',', $val);
$ckeys[] = $this->cacheKey($this->tableName(), $keys, $vals);
}
return $ckeys;
}
}