Subject | Re: Test results: JayBird vs Interclient on blob select on Linux and Windows |
---|---|
Author | Roman Rokytskyy <rrokytskyy@acm.org> |
Post date | 2003-03-01T10:05:56Z |
> I will try to find out the reason. This should be somehow related toReason seems to be in socket default receive and send buffer sizes.
> networking, because this is specific to local connections only.
Right now I do not have a solution, but for your case buffers of 16k
give the best performance (same as InterClient). You can fix driver by
adding following lines into org.firebirdsql.jgds.GDS_Impl (line 1496):
db.socket.setReceiveBufferSize(16 * 1024);
db.socket.setSendBufferSize(16 * 1024);
Best regards,
Roman Rokytskyy