-
I am trying to use Here are some runtime perf numbers:
My own batching simply does multiple So my questions are:
Edit:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
If you look at Maybe we are doing something silly, or maybe we are doing something more generic than you are, because I assume that, if you are only handling numbers, you are not taking all the care we need to take with users possibly trying to send values to escape. You are in a much better position than us to profile the difference between your code and ours (which is just a handful of python statements, no more than that)) and you might tell us if we can do anything better. |
Beta Was this translation helpful? Give feedback.
If you look at
execute_batch
code, it doesn't do much different than what you do. I don't know if the difference is in the client crafting the batches, in the time to send them over the network, or the time for the server to apply them: there is too much variability in that.Maybe we are doing something silly, or maybe we are doing something more generic than you are, because I assume that, if you are only handling numbers, you are not taking all the care we need to take with users possibly trying to send values to escape.
You are in a much better position than us to profile the difference between your code and ours (which is just a handful of python statements, no more than that)) and yo…