提问人:Madam Zu Zu 提问时间:10/13/2023 更新时间:10/13/2023 访问量:29
.NET 独立存储
.NET Isolated Storage
问:
我正在浏览一个 Windows 应用程序,试图找到加快速度的方法。我注意到的一件事是,从数据库中检索到的数据集随后被写入。System.IO.IsolatedStorage.IsolatedStorageFile
在阅读了一些关于独立存储用途的信息后,我觉得该应用程序没有正确使用它,因为它不适用于大型数据集(5K 以上)。注释掉“IsolatedStorageFile 缓存”后,应用程序的性能得到了明显提高。但我担心我没有完全理解存储功能,盲目地将其注释掉。
似乎在网上找不到太多关于它的信息,有很好的例子。有人愿意解释独立存储文件的用途吗?它只适用于较小的设置类型的东西吗?
答: 暂无答案
评论
With these stores, you can read and write data that less trusted code cannot access and prevent the exposure of sensitive information that can be saved elsewhere on the file system
如果您不想将敏感信息隐藏在代码之外,则无需使用它。如果需要,那么存储/检索它所需的时间是次要的。we
we