Charmander
Charmander
> ```js > if (backslash) { > const pos = i % size; > str[pos] = "\\"; > } > if (quote) { > const pos = (i + 2)...
> The problem is that the performance of parameters is very low. I have a 4x penalty with 5k strings being 100k characters long each one, so if we can...
Using array parameters instead of generating queries with large, variable numbers of parameters might help: https://github.com/brianc/node-postgres/issues/957#issuecomment-295583050 pg currently serializes arrays with a text representation (less efficient than the binary representation)...
@lroal You can use `new Uint8Array(arrayBuffer)` in pg right now.