This commit is contained in:
2020-01-27 22:17:05 +00:00
parent 3e608c1908
commit 0d6fa8a072
3 changed files with 18 additions and 16 deletions

View File

@@ -10,10 +10,12 @@ TODO: Ensure scaleability by checking for performance issues now before replicat
TODO: look for any line of code that does this or similar: await Task.CompletedTask, [anything].Result;
- Needs to be turned into a true async function or not an async function
TODO: Look at any of my middleware code as it's a HOT PATH, make sure it's async db access etc and nothing slowing it down
TODO: Any code at the server that access the db or does file IO MUST be async top to bottom!!
- FileUtil may have a bunch of IO stuff
TODO: REFACTOR GetNoLogAsync function is used in many places redundantly when the logging version could do the same thing but not log it with an optional bool switch so refactor that shit
TODO: REFACTOR biz objects have two creates, an async and sync one, WTF is that about? See if can make it just one async version.