Question:
I have too many… for wix studio data and CMS.
1- For data limit, standard plan mentions 200 writes per 1 min, number seems way too low.
Say I update a CMS using wixData.update code on 5 items per user!
Does that mean if 41 users visit my website it wont update and its bricked forever?
Or will it queue the update for the next min to prevent bricking the website?
“my website relays on accurate data”.
2- Is it the same to update 10 Collections containing 1 variable each or 1 collection table line that contains 10 Variables?
Example:
let toUpdate = {
“_id”: “SINGLE_ITEM_ID”,
“fund”: potatof,
“var1”: 6,
“var2”: 7,
“var3”: 2,
};
wixData.update(“Test”, toUpdate)
Is the code above 1 Write? OR Is it 5 Writes?
3- if the answer above is 5 writes and does not queue updates for next min…
Then how can anyone run a website without unlimited writes?
If 1 influencer mentions my website I would get 5000 users in 1 min that’s 25000 writes! at current pricing I would need pay 1 million dollar a month for my website to not be useless!
4- Is there some contingency for high traffic but for very short time, like… system detects insane traffic so it gives you unlimited writes for 10 mins then back to 200 on a cooldown of 24 hours?
5- for reads same question above if i have 50 dynamic elements from CMS does that mean if 75 users visit the website it stops working? and if all 50 elements were on 1 line and requested at once using code is that 1 read or is it still 50?
Sorry for the long post I didn’t know where to ask.