My Backbone web app doesn't properly reload collections from the server after logout followed by a login. It appears that this is because the associated API calls are being cached so when a new user logs in, they will see some of the previous user's data if the page isn't refreshed.
If I call collection.reset at logout for one such collection, the data is at least cleared for the next user, but their own data in that collection still isn't being loaded. Does anyone have an idea of how to prevent the requests from using the cache?