Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
745845df
Commit
745845df
authored
May 10, 2016
by
antirez
Browse files
Modules doc: mention the functions not yet documented.
parent
5daece2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/modules/API.md
View file @
745845df
...
@@ -669,11 +669,33 @@ Work in progress.
...
@@ -669,11 +669,33 @@ Work in progress.
## Sorted set type API
## Sorted set type API
Work in progress.
Documentation missing, please refer to the top comments inside
`module.c`
for the following functions:
*
`RedisModule_ZsetAdd`
*
`RedisModule_ZsetIncrby`
*
`RedisModule_ZsetScore`
*
`RedisModule_ZsetRem`
And for the sorted set iterator:
*
`RedisModule_ZsetRangeStop`
*
`RedisModule_ZsetFirstInScoreRange`
*
`RedisModule_ZsetLastInScoreRange`
*
`RedisModule_ZsetFirstInLexRange`
*
`RedisModule_ZsetLastInLexRange`
*
`RedisModule_ZsetRangeCurrentElement`
*
`RedisModule_ZsetRangeNext`
*
`RedisModule_ZsetRangePrev`
*
`RedisModule_ZsetRangeEndReached`
## Hash type API
## Hash type API
Work in progress.
Documentation missing, please refer to the top comments inside
`module.c`
for the following functions:
*
`RedisModule_HashSet`
*
`RedisModule_HashGet`
## Iterating aggregated values
## Iterating aggregated values
...
@@ -757,13 +779,8 @@ benefit.
...
@@ -757,13 +779,8 @@ benefit.
# Writing commands compatible with Redis Cluster
# Writing commands compatible with Redis Cluster
Work in progress. Implement and document the following API
:
Documentation missing, please check the following functions inside
`module.c`
:
RedisModule_IsKeysPositionRequest(ctx);
RedisModule_IsKeysPositionRequest(ctx);
RedisModule_KeyAtPos(ctx,pos);
RedisModule_KeyAtPos(ctx,pos);
Command implementations, on keys position request, must reply with
`REDISMODULE_KEYPOS_OK`
to signal the request was processed, otherwise
Cluster returns an error for those module commands that are not able to
describe the position of keys.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment