mahara-contributors team mailing list archive
-
mahara-contributors team
-
Mailing list archive
-
Message #37688
[Bug 1526073] A change has been merged
Reviewed: https://reviews.mahara.org/6984
Committed: https://git.mahara.org/mahara/mahara/commit/749ee8c247fa360a8ce9807fe91dd114f56a54e1
Submitter: Robert Lyon (robertl@xxxxxxxxxxxxxxx)
Branch: 16.10_STABLE
commit 749ee8c247fa360a8ce9807fe91dd114f56a54e1
Author: Aaron Wells <aaronw@xxxxxxxxxxxxxxx>
Date: Tue Dec 15 13:17:34 2015 +1300
Get rid of redundant DB writes in set_config()
Bug 1526073. Also in set_config_plugin() and
set_config_plugin_instance().
set_config_institution() is more complicated, and outside
the scope of this bug.
Change-Id: Ibaeb93fea83c190e6ffab7cd000eddf98f3afbb7
behatnotneeded: Covered by existing tests
(cherry picked from commit a79dd6bbeaee8f62ebeab6dfd697089cbfa1e1ca)
--
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1526073
Title:
set_config() writes to the database even if it's not necessary
Status in Mahara:
Fix Committed
Bug description:
Mahara's set_config() methods updates the database every single time
you call it, even if you haven't actually changed the value of the
field.
It would be more efficient if it did not do this. Especially since it
already does a SELECT statement to check whether it needs to do an
UPDATE or INSERT, it would be trivial to also make it check to see if
the value in the database is the same as the value passed by the user,
and skip that UPDATE if so.
To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1526073/+subscriptions
References