I was trying to use sharpCache option to cache images,
app.use(processImage({ root: 'public', sharpCache: { items: 200,files: 30 } }));
If sharpCache option is not given I think it should take default sharp cache option.
Is sharpCache option working?
Everytime, when an image is processed through url query string it uses more cpu. If it can cache it in file system, I believe it can process image faster. Any idea?
Thank you.