I have created a News Feed webpart which display news articles. (somewhat similar to news.com.au).
I have used the SharePoint 2010 OOTB PictureLibrarySlideshowWebPart to show news feed that has image slideshow. My client is complaining that when he views the news article with slideshow the CPU usage goes high (increases by 80%).
I'm using this code to create the picturelibraryslideshowwebpart
PictureLibrarySlideshowWebPart pictureSlideShowWebPart = new PictureLibrarySlideshowWebPart();
pictureSlideShowWebPart.LibraryGuid = pictureList.ID;
pictureSlideShowWebPart.ViewGuid = currentView.ID;
pictureSlideShowWebPart.Title = "Picture viewer";
pictureSlideShowWebPart.Speed = 1;
pictureSlideShowWebPart.Layout = SPPictureLibrarySlideshowDisplayStyle.NoTitleDesc;
pictureSlideShowWebPart.Mode = SPPictureLibrarySlideshowMode.Sequential;
pictureSlideShowWebPart.Width = 335;
pictureSlideShowWebPart.Height = 221;
pictureSlideShowWebPart.ChromeType = PartChromeType.None;
Has anyone experienced such issue and is there a workaround to fix this.