エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHub - monsur/jscache: Just a simple JavaScript LRU cache.
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - monsur/jscache: Just a simple JavaScript LRU cache.
// Create a new cache item // The constructor accepts an optional integer // parameter which plac... // Create a new cache item // The constructor accepts an optional integer // parameter which places a limit on how many // items the cache holds var cache = new Cache(); // add an item to the cache // parameters: key - the key to refer to the object // value - the object to cache // options - an optional parameter described below // the last parameter accepts an object which controls various cachi