We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in postgresql, the fastest way (by far) to insert rows is through copy.
copy
for larger datasets, this is even faster than prepared statements due to, if nothing else, communication and parsing overhead.
prepared statements
imho this would be right up there with pooling (which you already have) in making pg production ready.
The text was updated successfully, but these errors were encountered:
Thanks for opening the issue.
I won't be able to implement this within the next months, for anyone interested in implementing this, the protocol documentation is here:
http://www.postgresql.org/docs/8.1/static/protocol-flow.html#PROTOCOL-COPY
Sorry, something went wrong.
No branches or pull requests
in postgresql, the fastest way (by far) to insert rows is through
copy
.for larger datasets, this is even faster than
prepared statements
due to, if nothing else, communication and parsing overhead.imho this would be right up there with pooling (which you already have) in making pg production ready.
The text was updated successfully, but these errors were encountered: