What is caching?

后端 未结 9 1862
鱼传尺愫
鱼传尺愫 2020-11-28 17:49

I\'m constantly hearing about person y had performance issue x which they solved through caching.

Or, how doing x,y,z in your programs code can hurt your caching abil

9条回答
  •  失恋的感觉
    2020-11-28 18:39

    caching is taking the result of a long or cpu intensive algorithm and saving the answer so that you do not have to run the algorithm again, you just reuse the result.

提交回复
热议问题