"vscode:/vscode.git/clone" did not exist on "514a23472262de499005a31b1af3cca08a1c84ba"
Support conversion between `RedisModuleString` and `unsigned long long` (#10889)
Since the ranges of `unsigned long long` and `long long` are different, we cannot read an
`unsigned long long` integer from a `RedisModuleString` by `RedisModule_StringToLongLong` .
So I added two new Redis Module APIs to support the conversion between these two types:
* `RedisModule_StringToULongLong`
* `RedisModule_CreateStringFromULongLong`
Signed-off-by:
RinChanNOWWW <hzy427@gmail.com>
Please register or sign in to comment