From da91855af831be8a70b1527aadf393bcb215fda9 Mon Sep 17 00:00:00 2001 From: Roman Kuzmin Date: Wed, 13 Nov 2024 21:14:34 +0000 Subject: [PATCH] Add EnableLua and LuaTransactionMode to configuration.md (#796) Co-authored-by: Tal Zaccai --- website/docs/getting-started/configuration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/getting-started/configuration.md b/website/docs/getting-started/configuration.md index 04c7836491..3dc84c9af7 100644 --- a/website/docs/getting-started/configuration.md +++ b/website/docs/getting-started/configuration.md @@ -167,6 +167,8 @@ For all available command line settings, run `GarnetServer.exe -h` or `GarnetSer | **ExtensionAllowUnsignedAssemblies** | ```--extension-allow-unsigned``` | ```bool``` | | Allow loading custom commands from digitally unsigned assemblies (not recommended) | | **IndexResizeFrequencySecs** | ```--index-resize-freq``` | ```int``` | Integer in range:
[1, MaxValue] | Index resize check frequency in seconds | | **IndexResizeThreshold** | ```--index-resize-threshold``` | ```int``` | Integer in range:
[1, 100] | Overflow bucket count over total index size in percentage to trigger index resize | +| **EnableLua** | ```--lua``` | ```bool``` | | Enable Lua scripts on server | +| **LuaTransactionMode** | ```--lua-transaction-mode``` | ```bool``` | | Run Lua scripts as a transaction (lock keys - run script - unlock keys) | [^1]: A string representing a memory size. Can either be a number of bytes, or follow this pattern: 1k, 1kb, 5M, 5Mb, 10g, 10GB etc.