Reputation:
We are considering switching from Adobe Flex to Silverlight because Flex is just too slow.
I'm interested not in graphical performance, but computational performance and the speed at which it executes code.
Does anyone have any anecdotes to share about their experience of Silverlight performance?
Upvotes: 7
Views: 4875
Reputation: 1152
Reading this site and the comments relating to the various posts might help you:
http://www.shinedraw.com/flash-vs-silverlight-gallery/
Reality is Silverlight currently has an inferior rasteriser with some issues (outlined on the site linked above). But, as it has been mentioned here, you do get other benefits that can assist the rendering process such as multi-threading. Recently we ran into a lot of problems with rasterising of input text causing our Flash (for the sake of this conversation Flex is Flash) presentations to hiccup, there is no really good solution for this in Flash at the moment.
I would also suggest you will mostly get web and systems programmers giving their opinions here, rather than computer graphics programmers.
Upvotes: 1
Reputation: 512
Unlike Flex, Silverlight is multi-threaded. Which if used properly gives you the ability to write highly performant apps. There are many articles and blog posts on this. Here's a sample...
Upvotes: 4
Reputation: 1777
To add on to Caryden's answer, Microsoft is working on a multithreading library that makes it very easy to write multithreaded code (Will be part of .Net 4.0). This library will most likely make it into the Silverlight libraries in a future version.
Upvotes: 1
Reputation: 1728
Not sure about how flex does work on the client side.
What I like frokm Silverlight is that a real OOP language (C#) and all is compiled, about computation power, Scott Guthrie published a link to a chess game (same algorithm / implementation approach but javascript vs. silverlight), interesting how SL behave.
In the app I have developed I haven't had any issue on performance (some samples are managing more than 70 tables and relations) working with LINQ to XML... jejej where I have found some samples is fighting against some buggy controls on SL (combo and datagrid).
HTH Braulio
Upvotes: 1
Reputation:
tobinharris posted test results of calculating 1,000,000 primes. Silverlight was the clear victor for performance.
Upvotes: 2
Reputation: 7874
Upvotes: 1
Reputation: 1800
I've found that Silverlight handles the computational performance quite well. I've been disapointed by some of the graphical performance. Since that isn't you problem, I'd suggest some test with a few complex processes. I haven't used Flex, so I don't have a my own test for the difference.
Upvotes: 1