From e0b9aa62776cf3369fb896bec6a73422583a80c5 Mon Sep 17 00:00:00 2001 From: sveinungf Date: Sun, 30 Jun 2024 22:49:14 +0200 Subject: [PATCH] Updates to README --- README.md | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 36976fa7..abb8e84a 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,12 @@ SpreadCheetah is a high-performance .NET library for generating spreadsheet (Mic - Targeting .NET Standard 2.0 for .NET Framework and earlier versions of .NET Core - Targeting .NET 6 and newer for more optimizations - Trimmable and native AOT compatible -- MIT license SpreadCheetah is designed to create spreadsheet files in a forward-only manner. That means worksheets from left to right, rows from top to bottom, and row cells from left to right. This allows for creating spreadsheet files in a streaming manner, while also keeping a low memory footprint. -Most basic spreadsheet functionality is supported, such as cells with different data types, basic styling, and formulas. More advanced functionality is planned for future releases. See the list of currently supported spreadsheet functionality [in the wiki](https://github.com/sveinungf/spreadcheetah/wiki#supported-spreadsheet-functionality). +Most basic spreadsheet functionality is supported, such as cells with different data types, basic styling, and formulas. More advanced functionality will be added in future releases. See the list of currently supported spreadsheet functionality [in the wiki](https://github.com/sveinungf/spreadcheetah/wiki#supported-spreadsheet-functionality). See [Releases](https://github.com/sveinungf/spreadcheetah/releases) for release notes. @@ -155,18 +154,21 @@ with string values. Some of these libraries have multiple ways of achieving the but to make this a fair comparison the idea is to use the most efficient approach for each library. The code is available [in the Benchmark project](https://github.com/sveinungf/spreadcheetah/blob/main/SpreadCheetah.Benchmark/Benchmarks/StringCells.cs). -### .NET Framework 4.8 +
+

.NET 8

| Library | Mean | Allocated | |----------------------------|-------------:|--------------:| -| **SpreadCheetah** | **65.54 ms** | **152.23 KB** | -| Open XML (SAX approach) | 402.34 ms | 43 317.24 KB | -| EPPlusFree | 621.00 ms | 286 145.93 KB | -| Open XML (DOM approach) | 1,051.95 ms | 161 059.22 KB | -| ClosedXML | 1,310.59 ms | 509 205.80 KB | +| **SpreadCheetah** | **23.07 ms** | **6.44 KB** | +| Open XML (SAX approach) | 184.94 ms | 66 041.63 KB | +| EPPlusFree | 370.07 ms | 195 610.91 KB | +| Open XML (DOM approach) | 700.73 ms | 182 916.73 KB | +| ClosedXML | 754.83 ms | 529 203.20 KB | +
-### .NET 6 +
+

.NET 6

| Library | Mean | Allocated | |----------------------------|-------------:|--------------:| @@ -175,14 +177,17 @@ The code is available [in the Benchmark project](https://github.com/sveinungf/sp | EPPlusFree | 408.78 ms | 195 791.84 KB | | Open XML (DOM approach) | 802.89 ms | 182 926.09 KB | | ClosedXML | 891.17 ms | 529 852.29 KB | +
-### .NET 8 +
+

.NET Framework 4.8

| Library | Mean | Allocated | |----------------------------|-------------:|--------------:| -| **SpreadCheetah** | **23.07 ms** | **6.44 KB** | -| Open XML (SAX approach) | 184.94 ms | 66 041.63 KB | -| EPPlusFree | 370.07 ms | 195 610.91 KB | -| Open XML (DOM approach) | 700.73 ms | 182 916.73 KB | -| ClosedXML | 754.83 ms | 529 203.20 KB | +| **SpreadCheetah** | **65.54 ms** | **152.23 KB** | +| Open XML (SAX approach) | 402.34 ms | 43 317.24 KB | +| EPPlusFree | 621.00 ms | 286 145.93 KB | +| Open XML (DOM approach) | 1,051.95 ms | 161 059.22 KB | +| ClosedXML | 1,310.59 ms | 509 205.80 KB | +