Increase size of data over which we write the data to disk rather than keep it around in memory

This commit is contained in:
Sandra 2023-04-12 07:12:24 +03:00 committed by roytam1
commit af613ef24e

View file

@ -37,7 +37,7 @@ protected:
enum {
// The size of data over which we write the data to disk rather than
// keep it around in memory.
kLargeDatasetSize = 1000000 // 1 million bytes
kLargeDatasetSize = 4194304 // 4 Megabytes
};
nsresult WriteCache(nsISupports* aData, uint32_t aDataLen );