mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 04:20:55 +01:00
1e17fd31a4
Summary: Ref T4103. Conpherence is doing some weird stuff and has its own redudnant settings object. - Get rid of `ConpherenceSettings`. - Use `getUserSetting()` instead of `loadPreferences()`. - When applying transactions, add a new mechanism to efficiently prefill caches (this will still work anyway, but it's slower if we don't bulk-fetch). Test Plan: - Changed global Conpherence setting. - Created a new Conpherence, saw setting set to global default. - Changed local room setting. - Submitted messages. - Saw cache prefill for all particpiants in database. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4103 Differential Revision: https://secure.phabricator.com/D16025
137 lines
3.1 KiB
PHP
137 lines
3.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorUserCache extends PhabricatorUserDAO {
|
|
|
|
protected $userPHID;
|
|
protected $cacheIndex;
|
|
protected $cacheKey;
|
|
protected $cacheData;
|
|
protected $cacheType;
|
|
|
|
protected function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_TIMESTAMPS => false,
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'cacheIndex' => 'bytes12',
|
|
'cacheKey' => 'text255',
|
|
'cacheData' => 'text',
|
|
'cacheType' => 'text32',
|
|
),
|
|
self::CONFIG_KEY_SCHEMA => array(
|
|
'key_usercache' => array(
|
|
'columns' => array('userPHID', 'cacheIndex'),
|
|
'unique' => true,
|
|
),
|
|
'key_cachekey' => array(
|
|
'columns' => array('cacheIndex'),
|
|
),
|
|
'key_cachetype' => array(
|
|
'columns' => array('cacheType'),
|
|
),
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function save() {
|
|
$this->cacheIndex = Filesystem::digestForIndex($this->getCacheKey());
|
|
return parent::save();
|
|
}
|
|
|
|
public static function writeCache(
|
|
PhabricatorUserCacheType $type,
|
|
$key,
|
|
$user_phid,
|
|
$raw_value) {
|
|
self::writeCaches(
|
|
array(
|
|
array(
|
|
'type' => $type,
|
|
'key' => $key,
|
|
'userPHID' => $user_phid,
|
|
'value' => $raw_value,
|
|
),
|
|
));
|
|
}
|
|
|
|
public static function writeCaches(array $values) {
|
|
if (PhabricatorEnv::isReadOnly()) {
|
|
return;
|
|
}
|
|
|
|
if (!$values) {
|
|
return;
|
|
}
|
|
|
|
$table = new self();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
$sql = array();
|
|
foreach ($values as $value) {
|
|
$key = $value['key'];
|
|
|
|
$sql[] = qsprintf(
|
|
$conn_w,
|
|
'(%s, %s, %s, %s, %s)',
|
|
$value['userPHID'],
|
|
PhabricatorHash::digestForIndex($key),
|
|
$key,
|
|
$value['value'],
|
|
$value['type']->getUserCacheType());
|
|
}
|
|
|
|
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
|
|
|
|
foreach (PhabricatorLiskDAO::chunkSQL($sql) as $chunk) {
|
|
queryfx(
|
|
$conn_w,
|
|
'INSERT INTO %T (userPHID, cacheIndex, cacheKey, cacheData, cacheType)
|
|
VALUES %Q
|
|
ON DUPLICATE KEY UPDATE cacheData = VALUES(cacheData)',
|
|
$table->getTableName(),
|
|
$chunk);
|
|
}
|
|
|
|
unset($unguarded);
|
|
}
|
|
|
|
public static function clearCache($key, $user_phid) {
|
|
if (PhabricatorEnv::isReadOnly()) {
|
|
return;
|
|
}
|
|
|
|
$table = new self();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'DELETE FROM %T WHERE cacheIndex = %s AND userPHID = %s',
|
|
$table->getTableName(),
|
|
PhabricatorHash::digestForIndex($key),
|
|
$user_phid);
|
|
|
|
unset($unguarded);
|
|
}
|
|
|
|
|
|
public static function clearCacheForAllUsers($key) {
|
|
if (PhabricatorEnv::isReadOnly()) {
|
|
return;
|
|
}
|
|
|
|
$table = new self();
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
$unguarded = AphrontWriteGuard::beginScopedUnguardedWrites();
|
|
|
|
queryfx(
|
|
$conn_w,
|
|
'DELETE FROM %T WHERE cacheIndex = %s',
|
|
$table->getTableName(),
|
|
PhabricatorHash::digestForIndex($key));
|
|
|
|
unset($unguarded);
|
|
}
|
|
|
|
}
|