I'm using Firebase Cloud Firestore for my project and stumbled in this limitation:
Maximum write rate to a collection in which documents contain sequential values in an indexed field: 500 per second
I understand the limitation based on this answer. But if I disabled auto single-field indexes in firebase console, and only use this fields in compound indexes, this limitation still continues? I mean, does this single-field index limitation extends to compound indexes?
Thanks.