-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Conversation
they pass without any modifactions.
BREAKING CHANGE: filters that have hidden state won't be recalculated if the hidden state changes TODO: more info...
avoid hasOwnProperty calls and more
@tbosch, @vojtajina please take a look and provide preliminary feedback |
Have you thought of doing this for all expressions instead of just filters? |
... 5 hours later ... checkout jbedard@844d04c (note that this is branched off #8901) - it actually works pretty well for a quick poc of what I mentioned. All the watched expressions I've looked at are faster, and object/array literals (in my test) are 10x faster because they don't have to build an object each time (I assume that's the reason). Expressions with noop filters are also 2-3x faster just by avoiding the noop filter call... (see the linked PR for the benchmarks I'm using). This avoids executing the expression by only executing them when their input changes (or the input value is non-primitive similar to your PR). If the input changes then the expression is fully evaluated which will contain a lot of duplicate evaluation of those inputs. This means that expressions with frequently changing inputs (rare?) or non-primitive inputs could actually be slower due to the double evaluation. But if $parse was refactored more and those input values can be passed directly into parse instead of reevaluating them then this might be well worth it... Sorry if this is off topic or the wrong place to put this, but I've been thinking about this lately and this PR seems pretty similar... |
@@ -573,6 +573,12 @@ function isPromiseLike(obj) { | |||
} | |||
|
|||
|
|||
function isPrimitive(value) { | |||
var valueType; | |||
return (value == null || (valueType = typeof value) === 'string' || valueType === 'number'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I missed boolean
here
@jbedard very cool. I need more time to digest your changes, but it looks promising. I'm surprised that you were able to make I need to dig more into your benchmarks |
awesome work btw! |
Normally the expression tree for |
Even when I like the general idea, if this is going to be an opt-out, then I would like it to be at the 1.3 before we get into the next RC. The reason is that if this is enabled by default, then it will break modules like https://github.com/lgalfaso/angular-dynamic-locale |
I know. If now unknown problems arise we need to get this or the general I previously thought that we wouldn't be able to implement this easily, but
|
Should we delay rc1 then until this is in? I would vote for that... On Saturday, September 6, 2014, Igor Minar notifications@github.com wrote:
|
} | ||
|
||
if (isPrimitive(input)) { | ||
if (filterCache[filterCacheKeyInput] === input && (input === undefined || filterCacheKeyInput in filterCache)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am reading this wrong of if this is the first time the filter is executed and input
is undefined
then the result will be undefined and not the value from the filter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
darn it Lucas, how do you always find these corner-cases. you rock!
angular-gettext would certainly break because of this. Nonetheless, I'd also welcome the change (it makes). The breakage for locale filters can easily be avoided if you provide a clear method to wipe |
Would it make sense for a filter to have an opt-out defined on the filter function. This is just me brainstorming, but what about allowing a property to be defined on the function object, something like this: module.filter('myfilter', function() {
function myFilter(value) {
//...
}
myFilter.$useFilterCache = false;
return myFilter;
}); Then if a filter function has |
I second that. Very good improvement, but we still have to instrument the cache. As far as I got it right, it currently a pure object? Perhaps you extend this with a clear/reset function? |
use a cache to avoid recomputing filters during dirty-checking.
in the modified large-table benchmark delivers 3x speed improvement for number filter (apply duration), but makes the uppercase filter 20% slower
TODO:
getTime()