Skip to content
Snippets Groups Projects
Unverified Commit 77272ea5 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Use cache to determine if value need to be updated

parent 8c760e91
No related branches found
No related tags found
No related merge requests found
...@@ -215,6 +215,25 @@ class AllConfig implements \OCP\IConfig { ...@@ -215,6 +215,25 @@ class AllConfig implements \OCP\IConfig {
// TODO - FIXME // TODO - FIXME
$this->fixDIInit(); $this->fixDIInit();
if (isset($this->userCache[$userId][$appName][$key])) {
if ($this->userCache[$userId][$appName][$key] === (string)$value) {
return;
} else if ($preCondition !== null && $this->userCache[$userId][$appName][$key] !== (string)$preCondition) {
return;
} else {
$qb = $this->connection->getQueryBuilder();
$qb->update('preferences')
->set('configvalue', $qb->createNamedParameter($value))
->where($qb->expr()->eq('userid', $qb->createNamedParameter($userId)))
->andWhere($qb->expr()->eq('appid', $qb->createNamedParameter($appName)))
->andWhere($qb->expr()->eq('configkey', $qb->createNamedParameter($key)));
$qb->execute();
$this->userCache[$userId][$appName][$key] = $value;
return;
}
}
$preconditionArray = []; $preconditionArray = [];
if (isset($preCondition)) { if (isset($preCondition)) {
$preconditionArray = [ $preconditionArray = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment