-
Notifications
You must be signed in to change notification settings - Fork 41
RadSpreadStreaming: Update Overview article #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| Thank you for choosing Telerik **RadSpreadStreamProcessing**! | ||
|
|
||
| **RadSpreadStreamProcessing** is a library that allows you create big spreadsheet documents and export them to the most common file formats with a great performance and minimal resources. | ||
| This article briefly explains the Spread Stream library specifics as what is spread streaming, how it works compared to the **RadSpreadProcessing** library and when to use it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This article briefly explains the specifics of RadSpreadStreamProcessing - what is spread streaming, how it works compared to the RadSpreadProcessing library and when to use it.
|
|
||
| Spread streaming is a document processing paradigm that allows you to create big spreadsheet documents with great performance and minimal memory footprint. | ||
|
|
||
| The key for the memory efficiency is that the spread streaming library writes the spreadsheet content directly to a stream without creating and preserving the spreadsheet document model in memory. Each time a value is set, the export kicks-in and the new value is written into the stream. This allows you to create large documents with an excellent performance. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not absolutely true. All the values that should be preserved in the exported document are written when the corresponding object is disposed. E.g., if the users set a value to a cell, this value along with the other cell properties will be written when the used ICellExporter object is disposed.
| ## RadSpreadStreamProcessing vs. RadSpreadProcessing | ||
|
|
||
| There are two main differences between the libraries. | ||
| * __RadSpreadStreamProcessing__ can be used only to create documents and append data to existing ones. On the other hand you can use the __RadSpreadProcessing__ also for reading documents. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the other hand, you can use the RadSpreadProcessing also for reading and modifying the content of documents.
| * __RadSpreadStreamProcessing__ can be used only to create documents and append data to existing ones. On the other hand you can use the __RadSpreadProcessing__ also for reading documents. | ||
| * __RadSpreadStreamProcessing__ writes directly into a stream, unlike __RadSpreadProcessing__ which creates models for the elements in the document. This is why the memory used with the spread streaming library is significantly lower than when using __RadSpreadProcessing__. | ||
|
|
||
| ## When to Use the Spread Streaming |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When to Use RadSpreadStreamProcessing
|
|
||
| ## When to Use the Spread Streaming | ||
|
|
||
| You can use the spread stream processing to create and export large amount of data with a low memory footprint. You can also append data to already existing document stream. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use RadSpreadStreamProcessing...
Mention the great performance as well.
| * [Freezing panes]({%slug radspreadstreamprocessing-features-worksheetviewexporter%}#freeze-panes) | ||
|
|
||
| ## RadSpreadStreamProcessing vs. RadSpreadProcessing | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a link to the Overview page for RadSpreadProcessing, so the customers can find it easily if they are not familiar with the library.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same link could be added to the first sentence of the article as well.
No description provided.