Matthew Steeples

Results 60 comments of Matthew Steeples

Try 2.8 (just released). Absolutely flies on my machine. Amazing job!

Thanks for your response @bgklein. I don't know if it's useful at all, but there are some docs on enabling Electron apps to be deployed to the store [here](https://www.electronjs.org/docs/tutorial/windows-store-guide) which...

Possibly related - https://github.com/microsoft/MSBuildLocator/issues/153

I've started a process of removing the dllimports if you're interested. Please see http://github.com/MatthewSteeples/rsync.net

@cadwal In that case be [very surprised](https://docs.microsoft.com/en-us/azure/app-service/overview-managed-identity?tabs=dotnet#:~:text=The%20back-end%20services%20for%20managed%20identities%20maintain%20a%20cache%20per%20resource%20URI%20for%20around%2024%20hours). Managed Identity returns the same token for up to 24 hours, which has been a real pain when making changes to roles as...

Stacktrace: >System.AggregateException: StackExchange.Redis.RedisTimeoutException: at Microsoft.AspNet.SignalR.Messaging.ScaleoutStream.Send at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification at Microsoft.AspNet.SignalR.Owin.OwinWebSocketHandler+c__DisplayClass5_0+d.MoveNext at Microsoft.AspNet.SignalR.Messaging.ScaleoutStreamManager.Send at Microsoft.AspNet.SignalR.Messaging.ScaleoutMessageBus.Send at Microsoft.AspNet.SignalR.Messaging.ScaleoutMessageBus.Publish at Microsoft.AspNet.SignalR.Infrastructure.Connection.Send at Microsoft.AspNet.SignalR.ConnectionExtensions.Send at Microsoft.AspNet.SignalR.GroupManager.Add at Ledgerscope.Web.Shared.SignalR.Hubs.JobChangedNotificationHub+d__6.MoveNext at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification at Microsoft.AspNet.SignalR.Hubs.HubPipelineModule+c__DisplayClass0_0+d.MoveNext at...

Thanks for the reply. You're right that the problem is the recovery, not the timeout itself. Fully appreciate that this isn't a priority. We're probably about 12 months off our...

That's a good point. They probably both want excluding. It's not really a case of what's better, it's just what is likely to get thrown. As a side note, it's...

I recognise this is an old thread, but I think the following code illustrates the example ```csharp var largeDatabaseQuery = context.GetItems().Memoize(); if (largeDatabaseQuery.Any()) //Check to see if we need to...

It would for that scenario yes, but that was just to simplify the point. If your "do some processing" involves passing the IEnumerable off to somewhere outside of your control,...