You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[filenameGenerator](#filenamegenerator) - generate filename for downloaded resource
59
59
*[requestConcurrency](#requestconcurrency) - set maximum concurrent requests
60
60
*[tempMode](#tempMode) - How to store data temporarily during processing
61
+
*[tempDir](#tempMode) - The directory to use to store temp files when `tempMode === fs`
61
62
*[plugins](#plugins) - plugins, allow to customize filenames, request options, response handling, saving to storage, etc.
62
63
63
64
Default options you can find in [lib/config/defaults.js](https://github.com/website-scraper/node-website-scraper/blob/master/lib/config/defaults.js) or get them using
@@ -206,7 +207,7 @@ How to store temporary data when processing
206
207
207
208
*`memory` - Data is store in memory in its raw format (default).
208
209
*`memory-compressed` - Data is stored in memory but compressed using zlib. This is more memory efficient at the expense of CPU time spend compressing and decompressing.
209
-
*`fs` / `filesystem` - Data is stored in temporary files on the filesystem. This is the most memory efficient but it is strongly recommended to only use this mode with a solid state drive.
210
+
*`filesystem` - Data is stored in temporary files on the filesystem. This is the most memory efficient but it is strongly recommended to only use this mode with a solid state drive.
0 commit comments