Joel Verhagen (original author of NuGet Insights) has written several blog posts based on findings in this project:
- Disk write performance on Azure Functions - use the Azure File Share efficiently in Consumption plan
- Recommendations are implemented in
TempStreamWriter.cs
.
- Recommendations are implemented in
- How to run a distributed scan of Azure Table Storage - 10 minute Azure Functions limit and big Table Storage
- This trick is implemented in
TablePrefixScan
.
- This trick is implemented in
- The fastest CSV parser in .NET - comparing the performance of .NET CSV parsers on NuGet.org
- I used the fastest implementation in
CsvReaderAdapter
.
- I used the fastest implementation in
- The fastest way to dynamically activate objects in .NET - ILEmit vs.
new T()
vs.Activator
, etc.- I used the fastest approach allowing generics in
CsvReaderAdapter
, which is tied betweennew T()
andActivator
. I didn't use ILEmit since the overhead was too high for Azure Functions.
- I used the fastest approach allowing generics in