Skip to content

Commit 09c1604

Browse files
committed
Fix typo
1 parent 6687be1 commit 09c1604

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/release_notes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ The size includes segment lengths, so the actual maximum blob data received is `
881881
+
882882
The default can be changed with system property `org.firebirdsql.jdbc.defaultMaxInlineBlobSize`.
883883

884-
`maxBlobCacheSize` (aliases: `max_blob_cache_size`, `isc_dpb max_blob_cache_size`)::
884+
`maxBlobCacheSize` (aliases: `max_blob_cache_size`, `isc_dpb_max_blob_cache_size`)::
885885
Maximum size in bytes -- per connection -- of the blob cache (default: `10485760` or 10 MiB). +
886886
A value of `0` will disable the cache, but does not disable sending of inline blobs.
887887
Set `maxInlineBlobSize` to `0` to disable sending of inline blobs.
@@ -898,7 +898,7 @@ If the maximum blob cache size is reached, received inline blobs will be discard
898898
For pure Java connections, an inline blob is removed from the cache on first use, or when the transaction associated with the blob ends.
899899
The native client implementation may have different cache eviction rules.
900900

901-
As pure java connections remove the inline blob from the cache on first use, subsequent attempts to read the same blob -- by getting a different instance of `java.sql.Blob` or through multiple calls to the `ResultSet.getXXX` methods -- will use a server-side blob.
901+
As pure Java connections remove the inline blob from the cache on first use, subsequent attempts to read the same blob -- by getting a different instance of `java.sql.Blob` or through multiple calls to the `ResultSet.getXXX` methods -- will use a server-side blob.
902902
This can also happen if multiple columns or rows, even in different result sets on the same connection, point to the same blob id in the same transaction.
903903

904904
If you execute queries returning blobs, while those blobs are never actually opened, you may fill up the cache and later received inline blobs are then discarded.

0 commit comments

Comments
 (0)