Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimizing JMenu::getItems() #8864

Merged
merged 1 commit into from Jan 10, 2016
Merged

Optimizing JMenu::getItems() #8864

merged 1 commit into from Jan 10, 2016

Conversation

Hackwar
Copy link
Member

@Hackwar Hackwar commented Jan 8, 2016

This is related to #8863. I looked into JMenu::getItems() to see if this could be optimized further. While this is a small optimization, it still means that the count operation only has to be run once instead of for each menu item. The number of attributes does not change during this method call, so we can move this to the beginning of the method instead of it being part of the for-loop.

Thanks @volandku for this one, too.

@andrepereiradasilva
Copy link
Contributor

I have tested this item ✅ successfully on 5f0b23d

Thanks.
IMHO, all performance optimizations (even small ones), and especially the ones in parts of Joomla that are used in every sites, are a +100.


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/8864.

@Fedik
Copy link
Member

Fedik commented Jan 9, 2016

it would be performance loss in case of:

for ($i = 0; $i < count($attributes); $i++)

In existing code all fine, for me. As I remember the first part of the for() loop is not called each cycle.
so I do not see the profit in suggested changes, just moving the code around? 😉

@andrepereiradasilva
Copy link
Contributor

Yeah, i checked the code diff and i think @Fedik is right.

@sovainfo
Copy link
Contributor

sovainfo commented Jan 9, 2016

Suggest to look again: The for loop you are referring to is within the for loop of _items!

@Fedik
Copy link
Member

Fedik commented Jan 9, 2016

@sovainfo okay okay, I take my words back 😄

@andrepereiradasilva
Copy link
Contributor

Ups, must be sleeping, yes, there is a for before.
thanks @sovainfo.
So the test remains ok. :)

@sovainfo
Copy link
Contributor

sovainfo commented Jan 9, 2016

Not to worry, it was the first thing I checked. Viewing the complete source helps to put things in perspective. The reputation of Hannes (Hackwar) also helps, of course.

@Fedik
Copy link
Member

Fedik commented Jan 9, 2016

I have tested this item ✅ successfully on 5f0b23d


This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/8864.

wilsonge added a commit that referenced this pull request Jan 10, 2016
Optimizing JMenu::getItems()
@wilsonge wilsonge merged commit 3576e2f into joomla:staging Jan 10, 2016
@wilsonge wilsonge added this to the Joomla! 3.5.0 milestone Jan 10, 2016
@Hackwar Hackwar deleted the patch-2 branch April 27, 2019 07:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants