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
While reading the code I started wondering, if you have some data or at least first hand expriences of the speedup provided by the StaticString type? It seems you want to shift as much processing of all the literal tags and comments to compile time.
Some more insight would be appreciated!
Thx
The text was updated successfully, but these errors were encountered:
The idea is actually fairly simple. Since we don't know as which type (ByteString/String/Text...) the user is going to render the final output, we want to prepare for all cases. This means we don't have to do any conversions on the fly (as we have to do for user-supplied strings).
While reading the code I started wondering, if you have some data or at least first hand expriences of the speedup provided by the
StaticString
type? It seems you want to shift as much processing of all the literal tags and comments to compile time.Some more insight would be appreciated!
Thx
The text was updated successfully, but these errors were encountered: