-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can I use this with page_cache? #8
Comments
no update? |
Not sure it would make sense to do that? If it's cached, it'll be coming straight from the cache. |
I think this question might be related to the issue I'm struggling with at the moment. I have django per-site cache turned on. The middleware throws a pickle error unless I use the
I don't think I want "never_cache" b/c then cloud front won't cache the pages. I guess I have to switch to per-view cache |
verion in pypi didn't work for me litchfield/django-fastsitemaps#6 needed to adjust caching litchfield/django-fastsitemaps#8
Yes unfortunately streaming doesn't play well with caching- it doesn't really make sense anyway, except for the benefit of less memory usage? If you're using a CDN, do you really need this? |
at least for me it is desirable as rendering the pages on request took too much time and my nginx timed out. regenerate once a day and then cache for the many GoogleBot accesses seemed to be reasonable to me. for now I switched back to regular django sitemaps with caching and my SEO rank responded positively to that ... |
Maybe I don't need this (or maybe I don't understand what this does), but in my case I've got over 500,000 pages on my site which are backed by a sorl index. Somewhere else in my codebase, I have a generator that will page the solr results with |
if so, how?
The text was updated successfully, but these errors were encountered: