import from UXP: Increase size of data over which we write the data to disk rather than keep it around in memory (af613ef2)

This commit is contained in:
2023-04-13 09:35:12 +08:00
parent e77507eb72
commit a8c9733702
+1 -1
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 );