Tagged Questions
3
votes
2answers
74 views
Design of caching for a medium/small web app?
I have a web app that's currently ~700 LOC in JS (more is serverside). I'm using jQuery. As I find myself trying to minimize AJAX requests to the server, I've got an awkward mix of caching and ...
2
votes
4answers
212 views
Getting content: AJAX vs. “Regular” HTTP call
I like that, these days, we have an option for how we get our web content from the server: we can make an old-style HTTP request (with its own URL in the browser) or we can make an AJAX call and ...
1
vote
1answer
41 views
Redirecting to an actual page in response to an ajax request
We have a stateful app. When a user is inactive for some time, the session times out, and cached data/objects are destroyed.
We have a request filter which checks the session before the request is ...