I generated a large (31K items) pivot collection whose cxml file exceeds 21 megs. I would need to host this on a website however 21 megs is going to take a long time for the client silverlight pivot viewer control to load. I intend to use gzip compression to serve the file however is there anything better that can be done?

Is there a way to compress a Silverlight Pivot Collection's cxml file?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Using compression on the web server is your only real bet.

However, 31k is not going to work very well. Typically, if you break the 3k mark you start seeing bad performance, slow load times, etc.

I would look at your data and see if there is a way to break it up. Either linking collections, creating hierarchies, etc. That would get your users a better experience.

Sorry there isn't a better answer for you.

link|improve this answer
Can't break it up; can't think of a better way either. :( – kurtnelle Nov 15 '11 at 15:13
I really don't think you are going to get it to successfully work at that size. That is a ton of data to push across the pipe and I doubt the PivotViewer will handle the volume of items. – Tony Champion - CDS Nov 16 '11 at 14:54
Ok, I will have to invent something. Pivot is too cool to be left as a "toy" application. – kurtnelle Nov 16 '11 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.