throttling property
Whether to disable or configure throttling. By default, throttling is
enabled. This field can be set to either a boolean or a config
object. Setting it to true
will use default values. You can override
the defaults by setting it to false
to disable throttling, or by
setting the config values to enable throttling with the provided values.
@see https://firebase.google.com/docs/firestore/best-practices#ramping_up_traffic
@param initialOpsPerSecond The initial maximum number of operations per second allowed by the throttler. If this field is not set, the default is 500 operations per second. @param maxOpsPerSecond The maximum number of operations per second allowed by the throttler. If this field is set, the throttler's allowed operations per second does not ramp up past the specified operations per second.
Implementation
external JSAny get throttling;