skip to Main Content

Task.Run in C# Azure Functions

I'm using the following logic that seems to run in parallel when running locally, but when deployed on azure functions, it's running sequencially: var allRecordTasks = new List<Task<DataRecord>>(); for (int i = 0; i < 100; i++) { allRecordTasks.Add(Task.Run(() =>…

VIEW QUESTION
Back To Top
Search