English 中文(简体)
Java圣迹可以建议[闭门]
原标题:What JavaScript cache can you recommend [closed]
  • 时间:2009-08-24 14:16:20
  •  标签:

问我们 提议或找到一种工具、图书馆或偏袒场外资源的问题,在Stack Overflow,因为它们往往吸引有意见的答复和垃圾邮件。 相反, 问题以及迄今为止为解决这一问题所做的工作。

Closed 9 years ago.

i m 寻找一个好的java书写器,在圆形中进行切片,以取得客户的计算结果。

我的要求:

  • works in Internet Explorer, FireFox, Safari, Opera, Chrome, others a plus
  • stable
  • mature
  • small
  • fast
  • cache strategies should be configurable
  • several caches in one page, each with different eviciton strategy
  • LFU, LRU a plus

你在网络项目中使用什么? 你可以建议什么?

最佳回答

展望:

非常容易执行自毁功能的模式:

function isPrime( num ) {
  if ( isPrime.cache.getItem(num) != null ) // check if the result is already
    return isPrime.cache.getItem(num);      // cached

  var prime = num != 1; 
  for ( var i = 2; i < num; i++ ) {  // determine if the number is prime
    if ( num % i == 0 ) {
      prime = false;
      break;
    }
  }
  isPrime.cache.setItem(num, prime); // store the result on cache
  return prime;
}

isPrime.cache = new Cache();

//...

isPrime(5);  // true
isPrime.cache.getItem(5);  // true, the result has been cached

您能够具体说明到期时间(绝对或相对)、某一项目的优先顺序以及在从海滩上删除该项目时将履行的追随职能。

问题回答




相关问题
热门标签