|
|
|
|
|
by jessaustin
4417 days ago
|
|
...rate limiting has killed things I've built in the past, especially Google's hard rate limit. Sometimes it's possible to shift queries to the client, and then build in enough intelligence to: run only ten queries at a time, delay queries by a period that backs off, save results in localStorage, etc. This won't solve all problems, and perhaps it annoys users to see the first ten locations pop up immediately while subsequent locations have some random delay the first time they visit a particular resource, but it does make some things possible that would not be otherwise. |
|