Unfortunately I think the answer is to create them locally. Heroku uses a read-only file system (as it should), so even if you generate the sitemap, you'd have to store it in the database.
If your site map really is very dynamic, then I guess you could put it in the db. Every time you add a new page, then you add a new row to your site_map_links table. That would be slow to render, so you'd want to take advantage of Heroku's HTTP caching. There is probably some other creative option that I just haven't thought of. Doug B wrote: > Does anyone have a strategy for generating very large sitemaps > (multiple sitemaps of 50k links for 1 site) on Heroku? Is the only > option to create them locally and redeploy? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
