mybb2 icon indicating copy to clipboard operation
mybb2 copied to clipboard

Cache relations

Open JN-Jones opened this issue 10 years ago • 1 comments

Laravel caches (as always) nothing, so the following code will run the same query three times:

$forum = Forum::find(1);

$forum->parent;
$forum->parent;
$forum->parent;

while the following code will do the same but run the query only once:

$forum = Forum::find(1);

Forum::find($forum->parent_id);
Forum::find($forum->parent_id);
Forum::find($forum->parent_id);

JN-Jones avatar May 22 '15 10:05 JN-Jones

Moving this to Beta 1 milestone, not essential for Alpha releases as it's an optimisation.

wpillar avatar Aug 23 '15 22:08 wpillar