Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const cache = new Map()
class CacheHandler {
constructor(options) {
this.options = options
this.cache = {}
console.log('initialized custom cache-handler')
console.log('cache handler - cjs module exports')
}
async get(key) {
console.log('key', key)
console.log('cache-handler get', key)
return cache.get(key)
}
async set(key, data) {
console.log('set key', key)
console.log('cache-handler set', key)
cache.set(key, {
value: data,
lastModified: Date.now(),
})
}
}
module.exports = CacheHandler