Changes

Jump to navigation Jump to search
109 bytes removed ,  16:45, 6 April 2021
no edit summary
| '''Summary'''
|This option controls the unroll limit:
* Loop Loops with few iterations are *''unrolled* '' by the XQuery compiler to enable further optimizations.* For example, <code>(1 to 2) ! (. * 2)</code> will be rewritten to <code>1 ! (. * 2), 2 ! (. * 2)</code>. This expression can be further rewritten to <code>1 * 2, 2 * 2</code> and <code>2, 4</code>.* If the limit is increased, more optimizations will take place, but the size of the compiled code might memory consumption and compile time will increase.* See [[XQuery Optimizations#Loop unrolling|Loop unrolling]] for more details.
|}
Bureaucrats, editor, reviewer, Administrators
13,550

edits

Navigation menu