缓存功能的结果? [英] Cache results for functions?

查看:59
本文介绍了缓存功能的结果?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Javascript中,有一种方法可以缓存以下功能的结果:

In Javascript, is there a way to cache results for functions that are:


  • a)。计算上很昂贵。

  • b)。多次调用。

例如,经常调用递归阶乘函数。通常,我会创建一个单独的数组,例如 facotrialResults = []; 并在计算它们时将结果添加到它们中, factorialResults [x] =结果; 但是,有没有一种更好的方法可以完成此缓存而无需在全局名称空间中添加新变量?

Take for example a recursive factorial function that gets called frequently. Usually I'd create a separate array such as facotrialResults = []; and add my results to them when I calculate them, factorialResults[x] = result; However, is there a better way to accomplish this caching without the use of adding a new variable to the global namespace?

推荐答案

您可以将哈希附加到要缓存的函数上。

You could attach a hash to the function that you want to cache.

var expensive_fn = function(val) {
  var result = arguments.callee.cache[val];
  if(result == null || result == undefined) {
    //do the work and set result=...
    arguments.callee.cache[val]=result;
  }
  return result;
}
expensive_fn.cache = {};

这将要求该函数是1-1函数且无副作用。

This would require that the function is a 1-1 function with no side effects.

这篇关于缓存功能的结果?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆