You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure this is a good idea yet. Would need to have more use-cases in mind.
Some users of the library may want not to use a streaming API, for instance because they need to perform operations with multiple passes. We could expose APIs that let users process messages by loading them completely in memory, like almost all (or all?) other e-mail libraries do.
Of course this comes with the downside that whole messages (with their attachments) are loaded in memory.
The text was updated successfully, but these errors were encountered:
Keeping parsed MIME tree in memory along with contents can improve performance considerably if multiple passes are needed at the cost of memory usage. As compared to rerunning parsing function on each pass.
Not sure this is a good idea yet. Would need to have more use-cases in mind.
Some users of the library may want not to use a streaming API, for instance because they need to perform operations with multiple passes. We could expose APIs that let users process messages by loading them completely in memory, like almost all (or all?) other e-mail libraries do.
Of course this comes with the downside that whole messages (with their attachments) are loaded in memory.
The text was updated successfully, but these errors were encountered: