Code Monkey home page Code Monkey logo

Comments (4)

jessecogollo avatar jessecogollo commented on May 3, 2024

Check this in production. I think this loop is generate for gulp tasks.

from framework.

ykravv avatar ykravv commented on May 3, 2024

Unfortunately, no.

I think there is some problem in dirty-checking.js

In method scheduleDirtyCheck we have timeout for 120 ms...
screen shot 2015-02-05 at 09 44 08
...and in invoked method check isDirty check gives result "false", but anyway tracked.length gives "true" and method schedules dirty check again for 120 ms.
screen shot 2015-02-05 at 09 48 24
So, in such way we have checking every 120 ms - this causes problem I described above.

from framework.

EisenbergEffect avatar EisenbergEffect commented on May 3, 2024

Aurelia uses an adaptive binding system. This means we pick the best strategy for observing properties based on how you have defined them and what browser capabilities there are. Additionally, you can plugin in new strategies to teach the binding engine how to handle certain other scenarios. In the case of a "getter" there is no way to observe that. Object.observe cannot observe that and there's no way to generate code to do it. So, we have to fallback to dirty checking.

Dirty checking can basically be implemented in three ways that I know of:

  • Polling every so many milliseconds. This is what Polymer does as well as Aurelia, currently.
  • Force people to call a "digest" api when they want to dirty check. (Not appropriate for Aurelia since we don't primarily do dirty checking and don't want to force this on users.)
  • Monkey patch every async API and event API in the entire DOM. This is what Angular 2.0 is doing with Zones...and it seems extremely intrusive, error prone and could slow down perf for all these APIs.

Ultimately, we will have an API for declaring computed properties so that the system won't need to fallback to dirty changes for these types of scenarios. We don't have that yet though. If you have ideas on how to improve this, we'd love to hear them.

from framework.

EisenbergEffect avatar EisenbergEffect commented on May 3, 2024

Note, if the value is the same as before...it shouldn't actually be updating it in the view. If it is, that's a bug. It should only be checking it.

from framework.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.