This website works better with JavaScript.
Explore
Help
Sign In
hyperzlib
/
nodebb
Watch
1
Star
0
Fork
You've already forked nodebb
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7bc22a5993
isekai-main
v1.18.x
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '7bc22a5993'
${ noResults }
nodebb
/
src
/
cacheCreate.js
4 lines
56 B
JavaScript
Raw
Normal View
History
Unescape
Escape
feat: #8824, cache refactor (#8851) * feat: #8824, cache refactor ability to disable caches ability to download contents of cache refactor cache modules to remove duplicated code * fix: remove duplicate hit/miss tracking check cacheEnabled in getUncachedKeys
4 years ago
'use strict'
;
TTL Cache (#10816) * refactor: move src/cacheCreate.js to src/cache/lru.js * fix: call new library location for lru cache creator * feat: add ttl cache * fix: update upload throttler to use ttl cache instead of lru cache * chore: add missing dependency * fix: avoid pubsub conflicts * fix: use get instead of peek, which is not available in ttl-cache
3 years ago
module
.
exports
=
require
(
'./cache/lru'
)
;