drupal XML SITEMAP占用内存很多的处理

最近一直发现VPS内存不够用, 看日志发现是SITEMAP的原因, 有时候也会出现OUT OF MEMORY。

 

在网上找到解决办法

 

I can confirm a combination of comment #10 and comment #25 worked for me. My site has about 15k articles and 10k taxonomy terms.

This is what I did -

- Disable and uninstalle XMLSitemap completely - this will clean up the XMLsitemap tables too
- Clear out all cached xmlsitemaps from sites/default/files/xmlsitemap
- Install XMLsitemap (I used 2x-beta)
- Disable pre-fetching of the url aliases (IMPORTANT! This is one of the main culprits if memory is a constraint)
- Make sure that no content types or taxonomies are enabled for the sitemap
- Rebuild the sitemap while no content types or taxonomy are enabled.
- Enable content types you wish to include in the sitemap
- Set the number of items to be processed per cron run to 5000 (or a smaller number if your cron times out)
- Run cron manually -> note that the XMLsitemap tables increase in size, and sitemap is generated in sites/default/files/xmlsitemap folder
- Repeat manual cron run until all the nodes are processed
- now enable taxonomies to be included
- repeat manual cron runs until all of it is indexed -> check index status in XMLsitemap settings page
- verify that you can see your sitemap and subpages at the given sitemap URL

Cheers,
Anshuman

你可能感兴趣的:(drupal)