Skip to content

Instantly share code, notes, and snippets.

@anderser
Created March 26, 2012 14:31
Show Gist options
  • Save anderser/2205490 to your computer and use it in GitHub Desktop.
Save anderser/2205490 to your computer and use it in GitHub Desktop.
Cached tastypie model resource
class CachedModelResource(ModelResource):
def create_response(self, *args, **kwargs):
resp = super(CachedModelResource, self).create_response(*args, **kwargs)
resp['Cache-Control'] = "max-age=600"
return resp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment