Do I need to cache Dart property result in release flutter VM for the best of the best performance?
It dartpad, cache will improve performance.
class Piggybank {
List<num> moneys = [];
Piggybank();
save(num amt) {
moneys.add(amt);
}
num get total {
print('counting...');
return moneys.reduce((x, y) => x + y);
}
String get whoAmI {
return total < 10 ? 'poor' : total < 10000 ? 'ok' : 'rich';
}
String get uberWhoAmI {
num _total = total;
return _total < 10 ? 'poor' : _total < 10000 ? 'ok' : 'rich';
}
}
void main() {
var bank = new Piggybank();
new List<num>.generate(10000, (i) => i + 1.0)..forEach((x) => bank.save(x));
print('Me? ${bank.whoAmI}');
print('Me cool? ${bank.uberWhoAmI}');
}
Result
counting...
counting...
Me? rich
counting...
Me cool? rich
Property method are side effect free.
That entirely depends on how expensive the calculation is and how often the result is requested from the property.
Dart has nice syntax for caching if you actually do want to cache
To reset the cache because some value the result depends on has changed, just set it to
null
and the next time a property is accessed the values will be recalculated.