zip 文件和图像可以存储在 AppFabric 缓存中吗
我想知道,我是否可以将 Plist 和 Images 的 zip 文件存储在 AppFabric 缓存中?如果是,怎么办?我们是否需要将 zip 文件转换为二进制格式或其他格式,以便将其存储在 App Fabric 中。
我正在考虑将整个 zip 内容存储在 AppFabric 缓存中,以便提高应用程序的性能和可扩展性。
我正在使用 .net c# 开发我的网络服务。
I would like to know, if i can store the zip files of Plist and Images in the AppFabric cache? If yes, how? Do we need to covert the zip files to binary format or some other format, so that it can be stored in the App Fabric.
I am looking at storing the entire zip content in the AppFabric cache , so that the performance and the scalibility of my application improves.
I am developing my web service in .net c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以将这些文件存储在 AppFabric 中 - 在 AppFabric 中存储对象的限制是它们是 可序列化 (或 可序列化如果您在美国:-))。如何将文件转换为可序列化对象?您将其转换为字节 - 这是一个允许您使用网页上传 zip 文件的示例。
Yes, you can store these files in AppFabric - the restriction for storing objects in AppFabric is that they are serialisable (or serializable if you're in the USA :-)). How do you turn a file into a serialisable object? You turn it into bytes - here's an example that allows you to upload zip files with a web page.
如果 zip 文件和图像的内容不是动态创建的,为什么不使用 iis 缓存来缓存这些文件。
文件缓存(IIS 6.0)
if the content of the zip files and images are not created dynamically why not use iis cache for caching these files.
File Cache (IIS 6.0)