我想知道,我是否可以将 Plist 和图像的 zip 文件存储在 AppFabric 缓存中?如果是,如何?我们是否需要将 zip 文件转换为二进制格式或其他格式,以便可以将其存储在 App Fabric 中。
我正在考虑将整个 zip 内容存储在 AppFabric 缓存中,以便提高我的应用程序的性能和可扩展性。
我正在.net c# 中开发我的网络服务。
是的,您可以将这些文件存储在 AppFabric 中 - 在 AppFabric 中存储对象的限制是它们是可序列化的(如果您在美国,则可以序列化:-))。如何将文件变成可序列化的对象?您将其转换为字节 - 这是一个允许您通过网页上传 zip 文件的示例。
<asp:FileUpload runat="server" ID="ZipFileUpload" /><br />
<asp:Button runat="server" ID="UploadButton" Text="Upload file to AppFabric" OnClick="UploadButton_Click" />
<hr />
<asp:GridView runat="server" AutoGenerateColumns="false" ID="CachedZipFilesGridview">
<Columns>
<asp:BoundField DataField="Key" />
</Columns>
</asp:GridView>
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
bindGrid();
}
}
protected void UploadButton_Click(object sender, EventArgs e)
{
DataCacheFactory factory;
DataCache zipCache;
Byte[] zipArray;
// Check to see if the user uploaded a zip file
if (ZipFileUpload.HasFile && ZipFileUpload.PostedFile.FileName.EndsWith(".zip"))
{
// Initialise the byte array to the length of the uploaded file
zipArray = new Byte[ZipFileUpload.PostedFile.ContentLength];
// Read the uploaded file into the byte array
ZipFileUpload.PostedFile.InputStream.Read(zipArray, 0, ZipFileUpload.PostedFile.ContentLength);
factory = new DataCacheFactory();
// Get the "files" cache
zipCache = factory.GetCache("files");
// Add the byte array to the zipfiles region of the cache
// Using regions allows us to separate out images and zips
zipCache.Add(ZipFileUpload.PostedFile.FileName, zipArray,new TimeSpan(1,0,0), "zipfiles");
bindGrid();
}
}
protected void bindGrid()
{
DataCacheFactory factory;
DataCache zipCache;
IEnumerable<KeyValuePair<string, object>> cachedFiles;
DataTable cachedFilesDataTable;
factory = new DataCacheFactory();
zipCache = factory.GetCache("files");
cachedFiles = zipCache.GetObjectsInRegion("zipfiles");
cachedFilesDataTable = new DataTable();
cachedFilesDataTable.Columns.Add(new DataColumn("Key", typeof(string)));
foreach (KeyValuePair<string, object> cachedFile in cachedFiles)
{
cachedFilesDataTable.Rows.Add(cachedFile.Key);
}
CachedZipFilesGridview.DataSource = cachedFilesDataTable;
CachedZipFilesGridview.DataBind();
}
}
如果 zip 文件和图像的内容不是动态创建的,为什么不使用 iis 缓存来缓存这些文件。 文件缓存 (IIS 6.0)