Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有些人制作了一个 API 来显示一些战地统计数据,并要求人们不要在每次访问该站点时调用该 API,而是缓存响应并在定义的时间间隔内进行真正的调用。
我该如何处理?如何在前端将数据存储给其他用户?
您使用的是什么服务器端语言?我会做一个 cron 作业来调用真实数据并将其放入数据库中,然后所有客户端调用都将发送到您端的数据库。