-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ColStr.Append has performance problem #1164
Labels
Comments
Hi @hongker |
Hi, I'd like to contribute a PR if no-one is working on this. |
@kevinmingtarja go ahead. Contributions are appreciated. |
did you finished this work? |
Hi @hongker, no I just started. But if you want to do it, please go ahead since you are the one who proposed the feature. |
Merged
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
insert 100k records by Batch.Append function, I found it's has performance problem, current code is:
the cap of c.Buf not pre define, so it will took much time on runtime.growslice when insert too many records,
Describe the solution you'd like
I want a function, it can pre define the cap of col.Buf, like this:
The text was updated successfully, but these errors were encountered: