-
Notifications
You must be signed in to change notification settings - Fork 696
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
Future-Proof ValkeyModuleScriptingEngineMemoryInfo
by Adding Version
#1468
Comments
FYI @rjd15372 |
I don't understand the discussion in the original thread. Why isn't it enough to have a version in the main entry-point struct? |
typedef struct ValkeyModuleScriptingEngineMemoryInfo {
/* The memory used by the scripting engine runtime. */
size_t used_memory;
/* The memory used by the scripting engine data structures. */
size_t engine_memory_overhead;
/* new field */
size_t some_other_size;
} ValkeyModuleScriptingEngineMemoryInfo; If we had a version field in |
Originally posted by @PingXie in #1277 (comment)
The text was updated successfully, but these errors were encountered: