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: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,9 @@ By default the `docker-compose.yml` includes the core Zope instances and a light
57
57
|`RELSTORAGE_DSN`|*(empty)*| If provided, connects ZODB to a RelStorage backend (e.g. `dbname='reportek'...`) |
58
58
|`ZEO_ADDRESS`|*(empty)*| If set (e.g. `zeo:8100`), Zope connects to this ZEO server instead of using local FileStorage |
59
59
|`ZEO_SHARED_BLOB_DIR`|`off`| Declares if the blob directory is natively shared with a ZEO server volume mount (`on` / `off`) |
60
+
|`ZEO_CLIENT_CACHE_SIZE`|`128MB`| ZEO client object cache size (e.g. `128MB`, `512MB`). Only applied when `ZEO_ADDRESS` is set |
61
+
| `ZEO_CLIENT_BLOB_CACHE_SIZE` | *(unset)* | ZEO client local blob cache size (e.g. `1GB`). Only meaningful when `ZEO_ADDRESS` is set and `ZEO_SHARED_BLOB_DIR=off`; omitted from
62
+
+config when unset |
60
63
|`ZODB_CACHE_SIZE`|`50000`| Size of the ZODB cache for the main database |
61
64
|`ZOPE_THREADS`|`4`| Number of threads to use in the Waitress WSGI server |
62
65
|`ZOPE_DEBUG_MODE`|`off`| Toggles the Zope application debug mode (`on`, `off`) |
log "ZEO_ADDRESS is set to $ZEO_ADDRESS. Configuring ZEO Client..."
108
+
log "ZEO_ADDRESS is set to $ZEO_ADDRESS. Configuring ZEO Client (cache-size=$zeo_client_cache_size${ZEO_CLIENT_BLOB_CACHE_SIZE:+, blob-cache-size=$ZEO_CLIENT_BLOB_CACHE_SIZE})..."
0 commit comments