Akavache's GetObject<T> hangs when awaited. Any idea what is wrong here?
问题 I have a Xamarin.Forms application, with this code in my App class (yes, this is just a sample to demonstrate the issue): public App() { BlobCache.ApplicationName = "MyApp"; BlobCache.EnsureInitialized(); // The root page of your application MainPage = GetMainPage(); } public object BlockingGetExternalUser() { return GetExternalUser().Result; } private async Task<object> GetExternalUser() { try { return await BlobCache.LocalMachine.GetObject<object>("user"); } catch (KeyNotFoundException) {