使用隔离存储会降低窗口手机闪存的使用寿命吗?

问题描述:

我的应用程序每天会将对象保存大约1000次到隔离存储空间。

My app will save for approximate 1000 time a day an objects to the isolated storage.

这会降低Windows手机内存(闪存)的使用寿命吗?

Will this decrease the lifetime of the windows phone memory (flash)?

(我假设隔离存储将对象保存在flash中)

(I assumed that the isolated storage will save the object in flash)

我不相信闪存写入磨损统计数据是针对物理电话设备品牌正式发布的。

I do not believe the flash memory write-wear statistics are officially published for the physical phone device brands.

您的更新大约每分钟一次。

Your updates are about once a minute.

您的应用可能不会一年365天运行,所以我不会太担心它。

Your app likely won't be running 365 days a year so I would not worry too much about it.

但是如果数据量你写的很大,你可能会考虑设计你的设计以尽量减少这种活动。

But if the amount of data that you are writing is large, you might consider architecting your design to minimize this activity.

-Mark