DEV Community

Discussion on: Understand Memoization in 5 Minutes

Collapse
 
ilterkavlak profile image
ilterkavlak

Very nice writing. One thing to add, our application might use too much memory in case we cache everything(ex: a pod of a deployment on our k8s cluster that runs for a long time). Maybe cleaning up the cache from the not frequently used ones might work in that case. Also that would also require keeping another variable in for cached records sth like number times function called with these parameters.