Skip to content

Commit

Permalink
docs - clarify wherever cache-size relates to number of entries
Browse files Browse the repository at this point in the history
  • Loading branch information
refset committed Feb 1, 2022
1 parent da3dcd7 commit 411a349
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/administration/modules/ROOT/pages/configuring.adoc
Expand Up @@ -337,7 +337,7 @@ EDN::

=== Parameters

* `entity-cache-size` (int, default 32768): query entity cache size.
* `entity-cache-size` (int, default 32768): query entity cache size (number of entries, not bytes).
* `query-timeout` (int, default 30000): query timeout in milliseconds.
* `batch-size` (int, default 100): batch size of results.
* `fn-allow-list` (xref:#fn-allowlist[`Predicate Allowlist`], default nil): list of allowed namespaces/functions in predicate functions.
Expand Down
2 changes: 1 addition & 1 deletion docs/storage/modules/ROOT/pages/aws-s3.adoc
Expand Up @@ -71,7 +71,7 @@ EDN::
* `configurator` (xref:#configurator[`S3Configurator`])
* `bucket` (string, required)
* `prefix` (string): S3 key prefix
* `cache-size` (int): size of in-memory document cache
* `cache-size` (int): size of in-memory document cache (number of entries, not bytes)

[#checkpoint-store]
== Checkpoint store
Expand Down
2 changes: 1 addition & 1 deletion docs/storage/modules/ROOT/pages/azure-blobs.adoc
Expand Up @@ -87,4 +87,4 @@ Then you need to create a SAS token for the Storage Account via the https://port
* `sas-token` (string, required): 'shared access signature' for your chosen container.
* `storage-account` (string, required)
* `container` (string, required)
* `cache-size` (int): size of in-memory document cache
* `cache-size` (int): size of in-memory document cache (number of entries, not bytes)
2 changes: 1 addition & 1 deletion docs/storage/modules/ROOT/pages/google-cloud-storage.adoc
Expand Up @@ -70,7 +70,7 @@ Follow the GCS https://github.com/googleapis/google-cloud-java#authentication[Au
== Parameters

* `root-path` (string/`Path`, required): path where documents will be stored, `gs://bucket/prefix`
* `cache-size` (int): size of in-memory document cache
* `cache-size` (int): size of in-memory document cache (number of entries, not bytes)
* `pool-size` (int, default 4): size of thread-pool for GCS operations


Expand Down
2 changes: 1 addition & 1 deletion docs/storage/modules/ROOT/pages/jdbc.adoc
Expand Up @@ -250,4 +250,4 @@ EDN::
=== Document store (`+xtdb.jdbc/->document-store+`)

* `connection-pool`
* `cache-size` (int): size of in-memory document cache
* `cache-size` (int): size of in-memory document cache (number of entries, not bytes)

0 comments on commit 411a349

Please sign in to comment.