@@ -114,7 +114,7 @@ You should avoid using `calloc()` directly.
114
114
115
115
void *RedisModule_TryCalloc(size_t nmemb, size_t size);
116
116
117
- ** Available since:** unreleased
117
+ ** Available since:** 7.4.0
118
118
119
119
Similar to [ ` RedisModule_Calloc ` ] ( #RedisModule_Calloc ) , but returns NULL in case of allocation failure, instead
120
120
of panicking.
@@ -135,7 +135,7 @@ Use like `realloc()` for memory obtained with [`RedisModule_Alloc()`](#RedisModu
135
135
136
136
void *RedisModule_TryRealloc(void *ptr, size_t bytes);
137
137
138
- ** Available since:** unreleased
138
+ ** Available since:** 7.4.0
139
139
140
140
Similar to [ ` RedisModule_Realloc ` ] ( #RedisModule_Realloc ) , but returns NULL in case of allocation failure,
141
141
instead of panicking.
@@ -467,7 +467,7 @@ Returns `REDISMODULE_OK` on success and `REDISMODULE_ERR` in case of the followi
467
467
468
468
int RedisModule_AddACLCategory(RedisModuleCtx *ctx, const char *name);
469
469
470
- ** Available since:** unreleased
470
+ ** Available since:** 7.4.0
471
471
472
472
[ ` RedisModule_AddACLCategory ` ] ( #RedisModule_AddACLCategory ) can be used to add new ACL command categories. Category names
473
473
can only contain alphanumeric characters, underscores, or dashes. Categories can only be added
@@ -5268,7 +5268,7 @@ With the following effects:
5268
5268
5269
5269
unsigned int RedisModule_ClusterKeySlot(RedisModuleString *key);
5270
5270
5271
- ** Available since:** unreleased
5271
+ ** Available since:** 7.4.0
5272
5272
5273
5273
Returns the cluster slot of a key, similar to the ` CLUSTER KEYSLOT ` command.
5274
5274
This function works even if cluster mode is not enabled.
@@ -5279,7 +5279,7 @@ This function works even if cluster mode is not enabled.
5279
5279
5280
5280
const char *RedisModule_ClusterCanonicalKeyNameInSlot(unsigned int slot);
5281
5281
5282
- ** Available since:** unreleased
5282
+ ** Available since:** 7.4.0
5283
5283
5284
5284
Returns a short string that can be used as a key or as a hash tag in a key,
5285
5285
such that the key maps to the given cluster slot. Returns NULL if slot is not
0 commit comments