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 some missing INFO fields about FUNCTION #2599

Merged
merged 3 commits into from
Dec 31, 2023
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
15 changes: 12 additions & 3 deletions commands/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,18 @@ Here is the meaning of all fields in the **memory** section:
the net memory usage (`used_memory` minus `used_memory_startup`)
* `total_system_memory`: The total amount of memory that the Redis host has
* `total_system_memory_human`: Human readable representation of previous value
* `used_memory_lua`: Number of bytes used by the Lua engine
* `used_memory_lua_human`: Human readable representation of previous value
* `used_memory_scripts`: Number of bytes used by cached Lua scripts
* `used_memory_lua`: Number of bytes used by the Lua engine for EVAL scripts. Deprecated in Redis 7.0, renamed to `used_memory_vm_eval`
* `used_memory_vm_eval`: Number of bytes used by the script VM engines for EVAL framework (not part of used_memory). Added in Redis 7.0
* `used_memory_lua_human`: Human readable representation of previous value. Deprecated in Redis 7.0
* `used_memory_scripts_eval`: Number of bytes overhead by the EVAL scripts (part of used_memory). Added in Redis 7.0
* `number_of_cached_scripts`: The number of EVAL scripts cached by the server. Added in Redis 7.0
* `number_of_functions`: The number of functions. Added in Redis 7.0
* `number_of_libraries`: The number of libraries. Added in Redis 7.0
* `used_memory_vm_functions`: Number of bytes used by the script VM engines for Functions framework (not part of used_memory). Added in Redis 7.0
* `used_memory_vm_total`: `used_memory_vm_eval` + `used_memory_vm_functions` (not part of used_memory). Added in Redis 7.0
* `used_memory_vm_total_human`: Human readable representation of previous value.
* `used_memory_functions`: Number of bytes overhead by Function scripts (part of used_memory). Added in Redis 7.0
* `used_memory_scripts`: `used_memory_scripts_eval` + `used_memory_functions` (part of used_memory). Added in Redis 7.0
* `used_memory_scripts_human`: Human readable representation of previous value
* `maxmemory`: The value of the `maxmemory` configuration directive
* `maxmemory_human`: Human readable representation of previous value
Expand Down
Loading