教學課程:在 ASP.NET 上建立另行快取排行榜
在本教學課程中,您將會更新 ContosoTeamStats ASP.NET Web 應用程式 (在 Azure Cache for Redis 的 ASP.NET 快速入門中所建立),以納入會搭配 Azure Cache for Redis 使用另行快取模式的排行榜。 範例應用程式會顯示資料庫中的小組統計資料清單。 這也會示範以「Azure Cache for Redis」在快取中儲存和擷取資料,以改進效能的各種方式。 完成本教學課程時,您會擁有一個執行中的 Web 應用程式,此應用程式會對資料庫進行讀取和寫入、已使用 Azure Cache for Redis 進行最佳化,並裝載於 Azure 中。
在本教學課程中,您會了解如何:
- 藉由使用「Azure Redis 快取」來儲存和擷取資料,改善資料輸送量並降低資料庫負載。
- 使用 Redis 的已排序集合來擷取前 5 名的隊伍。
- 使用 Resource Manager 範本為應用程式佈建 Azure 資源。
- 使用 Visual Studio 將應用程式發佈至 Azure。
如果您沒有 Azure 訂閱,請在開始之前,先建立 Azure 免費帳戶。
必要條件
若要完成本教學課程,您必須具備下列先決條件:
- 本教學課程會從 Azure Redis 快取的 ASP.NET 快速入門的中斷處接續下去。 如果您尚未進行,請先依照該快速入門進行。
- 使用下列工作負載安裝 Visual Studio 2019:
- ASP.NET 和網頁程式開發
- Azure 開發
- 使用 SQL Server Express LocalDB 或 SQL Server 2017 Express Edition 的 .NET 桌面開發。
將排行榜新增至專案
在教學課程的這一節當中,您會為 ContosoTeamStats 專案設定一個排行榜,以報告一份清單中各虛擬隊伍輸、贏、平手的統計資料。
將 Entity Framework 新增至專案
在 Visual Studio 中,開啟您在 Azure Redis 快取的 ASP.NET 快速入門中建立的 ContosoTeamStats 解決方案。
選取 [工具] > [NuGet 套件管理員] > [套件管理員主控台]。
從 [套件管理員主控台] 視窗中執行下列命令,以安裝 EntityFramework:
Install-Package EntityFramework
如需此套件的詳細資訊,請參閱 EntityFramework NuGet 頁面。
新增隊伍模型
在 [方案總管] 中以滑鼠右鍵按一下 [模型],並選擇 [新增][類別]。
針對類別名稱輸入
Team
,然後選取 [新增]。將 Team.cs 檔案頂端的
using
陳述式替換為下列using
陳述式:using System; using System.Collections.Generic; using System.Data.Entity; using System.Data.Entity.SqlServer;
將
Team
類別的定義取代為包含已更新的Team
類別定義,以及一些其他 Entity Framework 協助程式類別的下列程式碼片段。 本教學課程會對 Entity Framework 使用 Code First 方法。 這個方法可讓 Entity Framework 從程式碼建立資料庫。 如需本教學課程中使用之 Entity Framework 的 Code First 方法的詳細資訊,請參閱 Code First 至新的資料庫。public class Team { public int ID { get; set; } public string Name { get; set; } public int Wins { get; set; } public int Losses { get; set; } public int Ties { get; set; } static public void PlayGames(IEnumerable<Team> teams) { // Simple random generation of statistics. Random r = new Random(); foreach (var t in teams) { t.Wins = r.Next(33); t.Losses = r.Next(33); t.Ties = r.Next(0, 5); } } } public class TeamContext : DbContext { public TeamContext() : base("TeamContext") { } public DbSet<Team> Teams { get; set; } } public class TeamInitializer : CreateDatabaseIfNotExists<TeamContext> { protected override void Seed(TeamContext context) { var teams = new List<Team> { new Team{Name="Adventure Works Cycles"}, new Team{Name="Alpine Ski House"}, new Team{Name="Blue Yonder Airlines"}, new Team{Name="Coho Vineyard"}, new Team{Name="Contoso, Ltd."}, new Team{Name="Fabrikam, Inc."}, new Team{Name="Lucerne Publishing"}, new Team{Name="Northwind Traders"}, new Team{Name="Consolidated Messenger"}, new Team{Name="Fourth Coffee"}, new Team{Name="Graphic Design Institute"}, new Team{Name="Nod Publishers"} }; Team.PlayGames(teams); teams.ForEach(t => context.Teams.Add(t)); context.SaveChanges(); } } public class TeamConfiguration : DbConfiguration { public TeamConfiguration() { SetExecutionStrategy("System.Data.SqlClient", () => new SqlAzureExecutionStrategy()); } }
在 [方案總管] 中,連按兩下 [Web.config] 加以開啟。
將下列
connectionStrings
區段新增至configuration
區段中。 連接字串的名稱必須符合 Entity Framework 資料庫內容類別的名稱,亦即TeamContext
。這個連接字串假設您已符合先決條件並已安裝 SQL Server Express LocalDB (這是附隨 Visual Studio 2019 一起安裝的 .NET 桌面開發工作負載的一部分)。
<connectionStrings> <add name="TeamContext" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Teams.mdf;Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings>
在
configuration
區段中,新的connectionStrings
區段緊接在configSections
後面,如下列範例所示:<configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> </configSections> <connectionStrings> <add name="TeamContext" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Teams.mdf;Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings> ...
新增 TeamsController 和檢視
在 Visual Studio 中建置專案。
在 [方案總管] 中,於 [控制器] 資料夾上按一下滑鼠右鍵,然後依序選擇 [新增] 和 [控制器]。
選擇 [包含檢視的 MVC 5 控制器 (使用 Entity Framework)],然後選取 [新增]。 如果您在選取 [新增] 後收到錯誤訊息,請確定您已先建置專案。
在 [模型類別] 下拉式清單中選取 [Team (ContosoTeamStats.Models)]。 在 [資料內容類別] 下拉式清單中選取 [TeamContext (ContosoTeamStats.Models)]。 在 [控制器名稱] 文字方塊中輸入
TeamsController
(如果尚未自動填入)。 選取 [新增] 以建立控制器類別並新增預設檢視。在 [方案總管] 中展開 [Global.asax],然後按兩下 [Global.asax.cs] 來加以開啟。
在檔案頂端的其他
using
陳述式底下新增下列兩個using
陳述式:using System.Data.Entity; using ContosoTeamStats.Models;
在
Application_Start
方法的結尾新增下列程式碼行:Database.SetInitializer<TeamContext>(new TeamInitializer());
在 [方案總管] 中展開
App_Start
,然後按兩下RouteConfig.cs
。在
RegisterRoutes
方法中,將Default
路由中的controller = "Home"
替換為controller = "Teams"
,如下列範例所示:routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Teams", action = "Index", id = UrlParameter.Optional } );
設定版面配置檢視
在 [方案總管] 中依序展開 [檢視] 資料夾和 [共用] 資料夾,然後按兩下 _Layout.cshtml。
變更
title
元素的內容,並將My ASP.NET Application
替換為Contoso Team Stats
,如下列範例所示:<title>@ViewBag.Title - Contoso Team Stats</title>
在
body
區段中,於「Azure Redis 快取測試」的連結正下方,新增下列新的 Contoso Team StatsHtml.ActionLink
陳述式。@Html.ActionLink("Contoso Team Stats", "Index", "Teams", new { area = "" }, new { @class = "navbar-brand" })`
按 Ctrl+F5 以建置並執行應用程式。 這個版本的應用程式會直接從資料庫讀取結果。 請注意透過 [使用 Entity Framework,包含檢視的 MVC 5 控制器] scaffold 自動新增至應用程式的 [建立新的]、[編輯]、[詳細資料] 和 [刪除] 動作。 在本教學課程的下一節中,您將會新增 Azure Cache for Redis,以將資料存取最佳化,並為應用程式提供其他功能。
設定 Azure Redis 快取的應用程式
在教學課程的這一節中,您會設定範例應用程式,讓其使用 StackExchange.Redis 快取用戶端在「Azure Redis 快取」執行個體中儲存和擷取 Contoso 隊伍統計資料。
將快取連線新增至隊伍控制器
您已在快速入門中安裝 StackExchange.Redis 用戶端程式庫套件。 您也已經將「CacheConnection 應用程式設定」設定為要在本機與已發佈的 App Service 搭配使用。 請在 TeamsController 中使用這個相同的用戶端程式庫和 CacheConnection 資訊。
在 [方案總管] 中展開 [控制器] 資料夾,然後按兩下 [TeamsController.cs] 來加以開啟。
在 TeamsController.cs 中新增下列兩個
using
陳述式:using System.Configuration; using StackExchange.Redis;
將下列兩個屬性新增至
TeamsController
類別:// Redis Connection string info private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<ConnectionMultiplexer>(() => { string cacheConnection = ConfigurationManager.AppSettings["CacheConnection"].ToString(); return ConnectionMultiplexer.Connect(cacheConnection); }); public static ConnectionMultiplexer Connection { get { return lazyConnection.Value; } }
將 TeamsController 更新為讀取快取或資料庫
在此範例中,隊伍統計資料可以擷取自資料庫或快取。 隊伍統計資料可儲存在快取中做為序列化的 List<Team>
,也可以使用 Redis 資料類型做為已排序集合。 從已排序集合擷取項目時,您可以擷取部分或所有項目,或是查詢特定項目。 在此範例中,您將查詢已排序集合內,獲勝次數排在前 5 名的隊伍。
在 Azure Cache for Redis 的使用上,並不要求將團隊統計資料以多種格式儲存在快取中。 本教學課程之所以使用多種格式,是為了示範某些可用來快取資料的不同方式和不同資料類型。
在
TeamsController.cs
檔案頂端新增下列using
陳述式,和其他using
陳述式放在一起:using System.Diagnostics; using Newtonsoft.Json;
將目前的
public ActionResult Index()
方法實作替換為下列實作:// GET: Teams public ActionResult Index(string actionType, string resultType) { List<Team> teams = null; switch(actionType) { case "playGames": // Play a new season of games. PlayGames(); break; case "clearCache": // Clear the results from the cache. ClearCachedTeams(); break; case "rebuildDB": // Rebuild the database with sample data. RebuildDB(); break; } // Measure the time it takes to retrieve the results. Stopwatch sw = Stopwatch.StartNew(); switch(resultType) { case "teamsSortedSet": // Retrieve teams from sorted set. teams = GetFromSortedSet(); break; case "teamsSortedSetTop5": // Retrieve the top 5 teams from the sorted set. teams = GetFromSortedSetTop5(); break; case "teamsList": // Retrieve teams from the cached List<Team>. teams = GetFromList(); break; case "fromDB": // Retrieve results from the database. default: teams = GetFromDB(); break; } sw.Stop(); double ms = sw.ElapsedTicks / (Stopwatch.Frequency / (1000.0)); // Add the elapsed time of the operation to the ViewBag.msg. ViewBag.msg += " MS: " + ms.ToString(); return View(teams); }
在
TeamsController
類別中新增下列三種方法,實作來自先前程式碼片段中新增之 switch 陳述式中的playGames
、clearCache
和rebuildDB
動作類型。PlayGames
方法會藉由模擬一個賽季的遊戲來更新隊伍統計資料、將結果儲存至資料庫,並清除快取中現已過時的資料。void PlayGames() { ViewBag.msg += "Updating team statistics. "; // Play a "season" of games. var teams = from t in db.Teams select t; Team.PlayGames(teams); db.SaveChanges(); // Clear any cached results ClearCachedTeams(); }
RebuildDB
方法會以一組預設的隊伍重新初始化資料庫、為這些隊伍產生統計資料,並清除快取中現已過時的資料。void RebuildDB() { ViewBag.msg += "Rebuilding DB. "; // Delete and re-initialize the database with sample data. db.Database.Delete(); db.Database.Initialize(true); // Clear any cached results ClearCachedTeams(); }
ClearCachedTeams
方法會移除快取中任何已快取過的隊伍統計資料。void ClearCachedTeams() { IDatabase cache = Connection.GetDatabase(); cache.KeyDelete("teamsList"); cache.KeyDelete("teamsSortedSet"); ViewBag.msg += "Team data removed from cache. "; }
在
TeamsController
類別中加入下列四種方法來實作各種從快取和資料庫中擷取隊伍統計資料的方式。 這四種方法皆會傳回List<Team>
以在檢視中顯示。GetFromDB
方法會從資料庫讀取隊伍統計資料。List<Team> GetFromDB() { ViewBag.msg += "Results read from DB. "; var results = from t in db.Teams orderby t.Wins descending select t; return results.ToList<Team>(); }
GetFromList
方法會從快取中讀取序列化List<Team>
形式的隊伍統計資料。 如果快取中沒有顯示統計資料,就會發生快取遺漏。 快取遺漏時,系統會從資料庫讀取隊伍統計資料,然後儲存在快取中以供下一個要求使用。 此範例會使用 JSON.NET 序列化在快取中傳入和傳出序列化的 .NET 物件。 如需詳細資訊,請參閱 如何在 Azure Redis 快取中使用 .NET 物件。List<Team> GetFromList() { List<Team> teams = null; IDatabase cache = Connection.GetDatabase(); string serializedTeams = cache.StringGet("teamsList"); if (!String.IsNullOrEmpty(serializedTeams)) { teams = JsonConvert.DeserializeObject<List<Team>>(serializedTeams); ViewBag.msg += "List read from cache. "; } else { ViewBag.msg += "Teams list cache miss. "; // Get from database and store in cache teams = GetFromDB(); ViewBag.msg += "Storing results to cache. "; cache.StringSet("teamsList", JsonConvert.SerializeObject(teams)); } return teams; }
GetFromSortedSet
方法會從快取的已排序集合讀取隊伍統計資料。 如果發生快取遺漏情形,便會從資料庫讀取團隊統計資料,然後以已排序集合的方式儲存在快取中。List<Team> GetFromSortedSet() { List<Team> teams = null; IDatabase cache = Connection.GetDatabase(); // If the key teamsSortedSet is not present, this method returns a 0 length collection. var teamsSortedSet = cache.SortedSetRangeByRankWithScores("teamsSortedSet", order: Order.Descending); if (teamsSortedSet.Count() > 0) { ViewBag.msg += "Reading sorted set from cache. "; teams = new List<Team>(); foreach (var t in teamsSortedSet) { Team tt = JsonConvert.DeserializeObject<Team>(t.Element); teams.Add(tt); } } else { ViewBag.msg += "Teams sorted set cache miss. "; // Read from DB teams = GetFromDB(); ViewBag.msg += "Storing results to cache. "; foreach (var t in teams) { Console.WriteLine("Adding to sorted set: {0} - {1}", t.Name, t.Wins); cache.SortedSetAdd("teamsSortedSet", JsonConvert.SerializeObject(t), t.Wins); } } return teams; }
GetFromSortedSetTop5
方法會從快取的已排序集合讀取前 5 名的隊伍。 它會先檢查快取中是否有teamsSortedSet
索引鍵。 如果這個索引鍵不存在,便會呼叫GetFromSortedSet
方法來讀取團隊統計資料,並將資料儲存在快取中。 接著便會查詢快取的已排序集合中傳回的前 5 名隊伍。List<Team> GetFromSortedSetTop5() { List<Team> teams = null; IDatabase cache = Connection.GetDatabase(); // If the key teamsSortedSet is not present, this method returns a 0 length collection. var teamsSortedSet = cache.SortedSetRangeByRankWithScores("teamsSortedSet", stop: 4, order: Order.Descending); if(teamsSortedSet.Count() == 0) { // Load the entire sorted set into the cache. GetFromSortedSet(); // Retrieve the top 5 teams. teamsSortedSet = cache.SortedSetRangeByRankWithScores("teamsSortedSet", stop: 4, order: Order.Descending); } ViewBag.msg += "Retrieving top 5 teams from cache. "; // Get the top 5 teams from the sorted set teams = new List<Team>(); foreach (var team in teamsSortedSet) { teams.Add(JsonConvert.DeserializeObject<Team>(team.Element)); } return teams; }
更新用來使用快取的建立、編輯和刪除方法
此範例進行過程所產生的樣板程式碼包括用來新增、編輯和刪除隊伍的方法。 每當您加入、編輯或移除隊伍時,快取中的資料就會變得過時。 在本節中,您將會修改這三種方法來清除已快取的隊伍,讓快取不會重新整理。
瀏覽至
TeamsController
類別中的Create(Team team)
方法。 在ClearCachedTeams
方法中新增呼叫,如下列範例所示:// POST: Teams/Create // To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://go.microsoft.com/fwlink/?LinkId=317598. [HttpPost] [ValidateAntiForgeryToken] public ActionResult Create([Bind(Include = "ID,Name,Wins,Losses,Ties")] Team team) { if (ModelState.IsValid) { db.Teams.Add(team); db.SaveChanges(); // When a team is added, the cache is out of date. // Clear the cached teams. ClearCachedTeams(); return RedirectToAction("Index"); } return View(team); }
瀏覽至
TeamsController
類別中的Edit(Team team)
方法。 在ClearCachedTeams
方法中新增呼叫,如下列範例所示:// POST: Teams/Edit/5 // To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see https://go.microsoft.com/fwlink/?LinkId=317598. [HttpPost] [ValidateAntiForgeryToken] public ActionResult Edit([Bind(Include = "ID,Name,Wins,Losses,Ties")] Team team) { if (ModelState.IsValid) { db.Entry(team).State = EntityState.Modified; db.SaveChanges(); // When a team is edited, the cache is out of date. // Clear the cached teams. ClearCachedTeams(); return RedirectToAction("Index"); } return View(team); }
瀏覽至
TeamsController
類別中的DeleteConfirmed(int id)
方法。 在ClearCachedTeams
方法中新增呼叫,如下列範例所示:// POST: Teams/Delete/5 [HttpPost, ActionName("Delete")] [ValidateAntiForgeryToken] public ActionResult DeleteConfirmed(int id) { Team team = db.Teams.Find(id); db.Teams.Remove(team); db.SaveChanges(); // When a team is deleted, the cache is out of date. // Clear the cached teams. ClearCachedTeams(); return RedirectToAction("Index"); }
將快取方法新增至隊伍索引檢視
在 [方案總管] 中依序展開 [檢視] 資料夾和 [隊伍] 資料夾,然後按兩下 [Index.cshtml]。
在檔案頂端附近尋找下列段落元素:
此連結會建立新的隊伍。 請將此段落元素取代為下列資料表。 這個資料表內有動作連結,可供建立新的隊伍、進行新一賽季的遊戲、清除快取、從快取中以數種格式擷取隊伍、從資料庫中擷取隊伍,以及使用全新的範例資料重建資料庫。
<table class="table"> <tr> <td> @Html.ActionLink("Create New", "Create") </td> <td> @Html.ActionLink("Play Season", "Index", new { actionType = "playGames" }) </td> <td> @Html.ActionLink("Clear Cache", "Index", new { actionType = "clearCache" }) </td> <td> @Html.ActionLink("List from Cache", "Index", new { resultType = "teamsList" }) </td> <td> @Html.ActionLink("Sorted Set from Cache", "Index", new { resultType = "teamsSortedSet" }) </td> <td> @Html.ActionLink("Top 5 Teams from Cache", "Index", new { resultType = "teamsSortedSetTop5" }) </td> <td> @Html.ActionLink("Load from DB", "Index", new { resultType = "fromDB" }) </td> <td> @Html.ActionLink("Rebuild DB", "Index", new { actionType = "rebuildDB" }) </td> </tr> </table>
捲動至 Index.cshtml 檔案底部,並新增下列
tr
元素,使其成為檔案中最後一個資料表內的最後一個資料列:<tr><td colspan="5">@ViewBag.Msg</td></tr>
這個資料列會顯示
ViewBag.Msg
的值,其包括目前作業的相關狀態報告。 當您選取上一個步驟中的任何一個動作連結時,便會設定ViewBag.Msg
。按 F6 來建置專案。
在本機執行應用程式
在機器本機上執行應用程式,確認已新增功能來支援隊伍。
在這項測試中,應用程式與資料庫都是在本機執行的。 Azure Cache for Redis 不是本機。 它會在 Azure 中遠端裝載。 因此,快取效能可能會比資料庫遜色一些。 為了獲得最佳效能,用戶端應用程式和「Azure Redis 快取」執行個體應該位於相同的位置。
在下一節,您會把所有資源部署到 Azure,以看見使用快取所產生的效能提升。
若要在本機執行應用程式:
按 Ctrl+F5 執行應用程式。
對新增至檢視的每個新方法進行測試。 在這些測試中,由於快取位於遠端,資料庫的效能應該會比快取好一些。
在 Azure 中發佈並執行
佈建應用程式的資料庫
在此節中,您將會在 SQL Database 中佈建新資料庫,以供應用程式在裝載於 Azure 時使用。
在 Azure 入口網站中,選取 Azure 入口網站左上角的 [建立資源]。
在 [新增] 頁面上,選取 [資料庫]>[SQL Database]。
針對新的 SQL Database 使用下列設定:
設定 建議的值 描述 資料庫名稱 ContosoTeamsDatabase 如需有效的資料庫名稱,請參閱資料庫識別碼。 訂用帳戶 您的訂用帳戶 選取您在建立快取和裝載 App Service 時所使用的相同訂用帳戶。 資源群組 TestResourceGroup 選取 [使用現有],並使用您用來放置快取和 App Service 的相同資源群組。 選取來源 空白資料庫 以空白資料庫開始。 在 [伺服器] 下,選取 [進行必要設定]>[建立新的伺服器] 並提供下列資訊,然後使用 [選取] 按鈕:
設定 建議的值 描述 伺服器名稱 任何全域唯一名稱 如需有效的伺服器名稱,請參閱命名規則和限制。 伺服器管理員登入 任何有效名稱 如需有效的登入名稱,請參閱資料庫識別碼。 密碼 任何有效密碼 您的密碼至少要有 8 個字元,而且必須包含下列幾種字元的其中三種︰大寫字元、小寫字元、數字和非英數字元。 地點 美國東部 選取您用來建立快取和 App Service 的相同區域。 選取 [釘選到儀表板],然後選取 [建立] 以建立新的資料庫和伺服器。
建立新的資料庫後,選取 [顯示資料庫連接字串],然後複製 ADO.NET 連接字串。
在 Azure 入口網站中,瀏覽至 App Service 並選取 [應用程式設定],然後在 [連接字串] 區段下選取 [新增連接字串]。
新增名為 TeamContext 的連接字串以符合 Entity Framework 資料庫內容類別。 貼上新資料庫的連接字串作為值。 請務必取代連接字串中的下列預留位置,然後選取 [儲存]:
預留位置 建議的值 {your_username} 針對您剛才建立的伺服器使用伺服器管理員登入。 {your_password} 針對您剛才建立的伺服器使用密碼。 藉由新增使用者名稱和密碼作為應用程式設定,程式碼中就不會包括使用者名稱和密碼。 這種方法可協助您保護這些認證。
將應用程式更新發佈至 Azure
在教學課程的這個步驟中,您會將應用程式更新發佈至 Azure 以在雲端中執行。
在 Visual Studio 中以滑鼠右鍵選取 [ContosoTeamStats] 專案,然後選擇 [發佈]。
選取 [發佈],以使用您在快速入門中所建立的相同發行設定檔。
發佈完成後,Visual Studio 會在預設網頁瀏覽器中啟動應用程式。
下表說明範例應用程式中的每個動作連結:
動作 描述 新建 建立新的隊伍。 遊戲賽季 玩一個賽季的遊戲、更新隊伍統計資料,並清除快取中任何已過時的隊伍資料。 清除快取 清除快取中的隊伍統計資料。 快取中的清單 擷取快取中的隊伍統計資料。 如果發生快取遺漏的情形,請從資料庫中載入統計資料,並儲存至快取中,以供下次使用。 快取中的已排序集合 使用已排序集合擷取快取中的隊伍統計資料。 如果發生快取遺漏的情形,請從資料庫中載入統計資料,並使用已排序集合儲存至快取中。 快取中的前 5 名隊伍 使用已排序集合擷取快取中的前 5 名隊伍。 如果發生快取遺漏的情形,請從資料庫中載入統計資料,並使用已排序集合儲存至快取中。 從資料庫載入 擷取資料庫中的隊伍統計資料。 重建資料庫 重建資料庫並在其中重新載入範例隊伍資料。 編輯/詳細資料/刪除 編輯隊伍、檢視隊伍的詳細資料、刪除隊伍。
選取某些動作,然後試驗從不同來源擷取資料。 請注意從資料庫和快取擷取資料的各種方式若要完成所需花費之時間的差異。
清除資源
當您完成範例教學課程應用程式時,就可以刪除 Azure 資源以節省成本和資源。 所有資源都應該包括在相同的資源群組中。 您可以藉由刪除資源群組,在一個作業中一併刪除所有資源。 本文的指示是使用名為 TestResources 的資源群組。
重要
刪除資源群組是無法回復的動作,資源群組和其內的所有資源將會永久刪除。 請確定您不會不小心刪除錯誤的資源群組或資源。 如果您在含有需要保留資源的現有資源群組內,建立了用來裝載此範例的資源,則可以從左側個別刪除每個資源。
登入 Azure 入口網站,然後選取 [資源群組]。
在 [篩選項目...] 文字方塊中輸入您的資源群組名稱。
選取資源群組右側的 [...],然後選取 [刪除資源群組]。
系統將會要求您確認是否刪除資源群組。 輸入您資源群組的名稱以進行確認,然後選取 [刪除]。
片刻過後,系統便會刪除該資源群組及其所有內含的資源。