We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f48e942 commit e3d95fdCopy full SHA for e3d95fd
src/bytecode.rs
@@ -75,6 +75,13 @@ impl<
75
76
/// Renders a template across multiple items in parallel using Rayon with
77
/// convenient internally-managed buffers, which requires a mutable reference to self.
78
+ ///
79
+ /// NOTE: This function makes serious trade-offs to enable the _maximum_ throughput.
80
+ /// It is far less efficient, and builds up a single buffer containing all results
81
+ /// prior to writing this buffer into the output, so it can consume much more memory,
82
+ /// and the latency to first-write is also significantly higher.
83
84
+ /// Only use if total throughput is the sole concern.
85
#[cfg(feature = "rayon")]
86
pub fn par_render<'b, RunnerItem>(
87
&mut self,
0 commit comments