函数闭包- 缓存数据

Posted yuyedaocao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数闭包- 缓存数据相关的知识,希望对你有一定的参考价值。

var searchBox = (function() {
    var cache = {},count = 0, index = [];
    return function(key, value) {
        if (cache[key]) {
            return value;
        }
        cache[key] = value;
        count += 1;
        index.push(key)
        if (count > 2) {
            index.shift() //如果超出了限制,将最早的key删除
        }
        return cache;
    }
})();
console.log(searchBox("name", "xxax")) // {name: "xxax"}
console.log(searchBox("name", "xxax")) // xxax
console.log(searchBox("name", "xxax")) // xxax
console.log(searchBox("age", 23)) // {name: "xxax", age:23}
console.log(searchBox("age", 23)) // 23    

以上是关于函数闭包- 缓存数据的主要内容,如果未能解决你的问题,请参考以下文章

Spark闭包与序列化

3.使用闭包实现数据缓存

scala编程——函数和闭包

函数闭包

Rails:旧数据与新数据不匹配时如何更新片段缓存

JS 闭包 正则