Side navigation
#9481 closed bug (wontfix)
Opened June 01, 2011 09:21AM UTC
Closed July 12, 2011 05:52PM UTC
Performance optimization?
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | core | Version: | 1.6.1 |
Keywords: | needsreview | Cc: | |
Blocked by: | Blocking: |
Description
Just ran into this via StackOverflow:
https://github.com/matjaz/jquery.fly/
http://jsperf.com/jquery-fly/4
I've no idea on the merit of the code, but an occasional x4 performance seems like an idea worth investigating...
Attachments (0)
Change History (8)
Changed June 01, 2011 09:37AM UTC by comment:1
Changed June 01, 2011 09:52AM UTC by comment:2
Ref stackoverflow: http://stackoverflow.com/questions/6198633/what-is-jquery-fly-plugin-used-for
Could potentially be a reasonable performance gain when iterating over a large number of items, though could cause problems using .context, .selector, etc, although it's worth investigating where jQuery can be cached wherever reasonably possible.
Changed June 01, 2011 02:50PM UTC by comment:3
I think this is a pattern to be applied externally, rather than exposed from jQuery core itself. In many $.each
loops there may not be a need at all for a jQuery
object and creating one unnecessarily would waste time/memory.
Changed June 01, 2011 06:22PM UTC by comment:4
status: | new → open |
---|
Went through 1.6.1 and there do seem to be some places where we can create one jQuery object outside the scope and just update the single element rather than constructing with jQuery(this)
. Might be worth a look.
Changed June 01, 2011 06:22PM UTC by comment:5
component: | unfiled → core |
---|
Changed June 08, 2011 06:32PM UTC by comment:7
FWIW, I explained over on #9525 that I don't think these two are duplicates, but they are simiilar in spirit.
Changed July 12, 2011 05:52PM UTC by comment:8
keywords: | → needsreview |
---|---|
priority: | undecided → low |
resolution: | → wontfix |
status: | open → closed |
If this is a pattern that you find useful then feel free to use it, however we feel that this is not a suitable addition to the jQuery Core.
There may actually be some situations where calling the full jQuery constructor is unneccesary. This could actually be of use internally as a micro-optimisation.