FoundatioFx / Foundatio

Pluggable foundation blocks for building distributed apps.
Apache License 2.0
1.99k stars 244 forks source link

More async InMemoryFileStorage #261

Closed benaadams closed 3 years ago

benaadams commented 3 years ago

Change from Stream.CopyTo to Stream.CopyToAsync as that can lead to blocking waits on ThreadPool threads:

image

Change from lock to SemaphoreSlim and use await WaitAsync() to queue and reduce lock contention

image