Files
GuyAv46 340615255b Add API RedisModule_ClusterKeySlotC (#14442)
Enhancing #13069, by adding a more direct API for getting the slot of a
string

Introduces new module API: 

```c
/* Like `RM_ClusterKeySlot`, but gets a char pointer and a length.
 * Returns the cluster slot of a key, similar to the `CLUSTER KEYSLOT` command.
 * This function works even if cluster mode is not enabled. */
 unsigned int RM_ClusterKeySlotC(const char *keystr, size_t keylen)
```
2025-10-22 18:28:30 +03:00
..