CLR up times on MPX 200

  • Thread starter Thread starter Miron Ophir
  • Start date Start date
M

Miron Ophir

Is it reasonable that the CLR takes ~5 seconds to load in MPX 200?
Total application up time is even longer (~14 seconds) which will make most
users abandon it after several trials.

Is there a way to keep CLR up every time the phone is switched on?

Miron
 
The CLR runs on a per-process basis, so unfortunately there's no way to
have a single instance of the CLR handle multiple applications. We've done
a fair amount of work to improve start-up performance in v2 (I'd be
interested to hear any comments in this regard). It is interesting to note
that a sizeable chunk of the start-up time is due to the security hash
check on the application and libraries. If your executable is strong-name
signed, then you might be able to improve performance by removing the
strong name. (If there is nothing linked against the executable, then the
strong name doesn't play much of a role.)

Ryan Chapman
.NET Compact Framework

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top