@@ -23,7 +23,7 @@ export declare interface FirestoreSettings
23
23
| Property | Type | Description |
24
24
| --- | --- | --- |
25
25
| [cacheSizeBytes ](./firestore_ .firestoresettings .md #firestoresettingscachesizebytes ) | number | NOTE : This field will be deprecated in a future major release . Use <code >cache </code > field instead to specify cache size , and other cache configurations .<!-- -->An approximate cache size threshold for the on -disk data . If the cache grows beyond this size , Firestore will start removing data that hasn 't been recently used . The size is not a guarantee that the cache will stay below that size , only that if the cache exceeds the given size , cleanup will be attempted .<!-- -->The default value is 40 MB . The threshold must be set to at least 1 MB , and can be set to <code >CACHE_SIZE_UNLIMITED </code > to disable garbage collection . |
26
- | [experimentalAutoDetectLongPolling ](./firestore_ .firestoresettings .md #firestoresettingsexperimentalautodetectlongpolling ) | boolean | Configures the SDK 's underlying transport (WebChannel ) to automatically detect if long -polling should be used . This is very similar to <code >experimentalForceLongPolling </code >, but only uses long -polling if required .<!-- -->After having had a default value of <code >false </code > since its inception 4 years ago , the default value of this setting was changed in the most recent release to <code >true </code >. That is , auto -detection of long polling is now enabled by default . To disable it , set this setting to <code >false </code >, and please open a GitHub issue to share your problems with long -polling auto -detection . |
26
+ | [experimentalAutoDetectLongPolling ](./firestore_ .firestoresettings .md #firestoresettingsexperimentalautodetectlongpolling ) | boolean | Configures the SDK 's underlying transport (WebChannel ) to automatically detect if long -polling should be used . This is very similar to <code >experimentalForceLongPolling </code >, but only uses long -polling if required .<!-- -->After having had a default value of <code >false </code > since its inception in 2019 , the default value of this setting was changed in mid -2023 to <code >true </code >. That is , auto -detection of long polling is now enabled by default . To disable it , set this setting to <code >false </code >, and please open a GitHub issue to share the problems that motivated you disabling long -polling auto -detection . |
27
27
| [experimentalForceLongPolling ](./firestore_ .firestoresettings .md #firestoresettingsexperimentalforcelongpolling ) | boolean | Forces the SDK ’s underlying network transport (WebChannel ) to use long -polling . Each response from the backend will be closed immediately after the backend sends data (by default responses are kept open in case the backend has more data to send ). This avoids incompatibility issues with certain proxies , antivirus software , etc . that incorrectly buffer traffic indefinitely . Use of this option will cause some performance degradation though .<!-- -->This setting cannot be used with <code >experimentalAutoDetectLongPolling </code > and may be removed in a future release . If you find yourself using it to work around a specific network reliability issue , please tell us about it in https :// github.com/firebase/firebase-js-sdk/issues/1674. |
28
28
| [host ](./firestore_ .firestoresettings .md #firestoresettingshost ) | string | The hostname to connect to . |
29
29
| [ignoreUndefinedProperties ](./firestore_ .firestoresettings .md #firestoresettingsignoreundefinedproperties ) | boolean | Whether to skip nested properties that are set to <code >undefined </code > during object serialization . If set to <code >true </code >, these properties are skipped and not written to Firestore . If set to <code >false </code > or omitted , the SDK throws an exception when it encounters properties of type <code >undefined </code >. |
@@ -48,7 +48,7 @@ cacheSizeBytes?: number;
48
48
49
49
Configures the SDK 's underlying transport (WebChannel ) to automatically detect if long -polling should be used . This is very similar to `experimentalForceLongPolling `<!-- -->, but only uses long -polling if required .
50
50
51
- After having had a default value of `false ` since its inception 4 years ago , the default value of this setting was changed in the most recent release to `true `<!-- -->. That is , auto -detection of long polling is now enabled by default . To disable it , set this setting to `false `<!-- -->, and please open a GitHub issue to share your problems with long -polling auto -detection .
51
+ After having had a default value of `false ` since its inception in 2019 , the default value of this setting was changed in mid -2023 to `true `<!-- -->. That is , auto -detection of long polling is now enabled by default . To disable it , set this setting to `false `<!-- -->, and please open a GitHub issue to share the problems that motivated you disabling long -polling auto -detection .
52
52
53
53
<b >Signature :</b >
54
54
0 commit comments