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
In both of these cases, using arrays, without array pooling is causing unneccessary GC pressure (especially since we are reading from a C array in the first place).
Expose the original C arrays as ReadOnlySpan<sqlite3_value>, and then create a trampoline to allow legacy delegates to work with arrays.
This will allow future code to be able to access the arguments directly without allocation and without copying, whilst working with existing code.
The text was updated successfully, but these errors were encountered:
arontsang
changed the title
delegate_function_scalar and delegate_function_aggregate_step use sqlite3_value[] as opposed to ReadOnlySpan<sqlite3_value>delegate_function_scalar and delegate_function_aggregate_step use sqlite3_value[] as opposed to ReadOnlySpan<sqlite3_value>Feb 11, 2025
In both of these cases, using arrays, without array pooling is causing unneccessary GC pressure (especially since we are reading from a C array in the first place).
Expose the original C arrays as
ReadOnlySpan<sqlite3_value>
, and then create a trampoline to allow legacy delegates to work with arrays.This will allow future code to be able to access the arguments directly without allocation and without copying, whilst working with existing code.
The text was updated successfully, but these errors were encountered: