Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EnableLua and LuaTransactionMode to configuration.md #796

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions website/docs/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br/>[1, MaxValue] | Index resize check frequency in seconds |
| **IndexResizeThreshold** | ```--index-resize-threshold``` | ```int``` | Integer in range:<br/>[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.