If you never get a computed property, its observers will not fire even if its dependent keys change. You can think of the value changing from one unknown value to another.
This doesn’t make any sense to me, can someone explain what it means?
It’s a performance thing, if nothing want’s the computed property value, then why compute it… So if nothing in JavaScript .get('foobar'), used in another computed property as a dependent key, used in a template {{foobar}}, used in a helper {{ucwords foobar}}, etc. need the computed property, then it won’t be computed. That would be the unconsumed context.
Both .set() and .get() will obviously trigger the computed property. However, if you don’t return anything when you .set() then nothing will be cached and the computed property will remain unconsumed (if previously unconsumed).