You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/asciidoc/release_notes.adoc
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -408,6 +408,24 @@ These were previously not explicitly licensed.
408
408
409
409
For more information, see: https://github.com/FirebirdSQL/jaybird/blob/master/devdoc/jdp/jdp-2025-01-apply-spdx-license-info-and-comply-with-reuse-specification.adoc[jdp-2025-01: Apply SPDX license info and comply with REUSE specification^]
410
410
411
+
[#blob-performance]
412
+
=== Blob performance improvements
413
+
414
+
[#blob-performance-defer-open]
415
+
==== Deferred blob open
416
+
417
+
In the pure Java implementation, performance of reading and writing blobs was improved by deferring the server-side opening or creating of a blob until an actual server-side operation (putting or getting a segment, or getting blob info).
418
+
The open or create blob request is pipelined with the subsequent operation, avoiding a round trip to the server.
419
+
This is especially noticeable in connections with high latency.
420
+
421
+
Artificial testing on local WiFi with small blobs shows around 85% increase in throughput (comparing a 6.0.1-SNAPSHOT against 6.0.0).
422
+
423
+
This optimization is available for Firebird 2.1 and higher, but formally only supported for Firebird 3.0 and higher.
424
+
425
+
This optimization was backported to Jaybird 5.0.7 and Jaybird 6.0.1.
426
+
427
+
For native connections, a similar optimization -- but only for reading blobs -- is available when using a Firebird 5.0.2 or higher fbclient, independent of the Jaybird version.
0 commit comments