database - API request limit work around -
i'm building react native app , want pull information api has 10 requests/minute limit. okay couple of users i'm concerned won't scale. example if 30 users using app @ once there 30 api requests , 20 users won't data. typical solution this? should create database requests api every minute stores data short term , users data database? overkill? i'm new , trying understand. in advance patience.
from op's request,
yes, should pull information api server (which not yours) every several seconds, not exceed limit (for example, 10 requests / per minute).
and can:
- store them database. or better if data size not big: store them in memory.
- repopulate pulling server delegate api server.
so every react native app can pull new delegation server, larger request limits.
Comments
Post a Comment