Skip to content
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

Document new REDISMODULE_OPEN_KEY_ACCESS_EXPIRED #2719

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/reference/modules/modules-api-ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,7 @@ Extra flags that can be pass to the API under the mode argument:
* `REDISMODULE_OPEN_KEY_NOSTATS` - Don't update keyspace hits/misses counters.
* `REDISMODULE_OPEN_KEY_NOEXPIRE` - Avoid deleting lazy expired keys.
* `REDISMODULE_OPEN_KEY_NOEFFECTS` - Avoid any effects from fetching the key.
* `REDISMODULE_OPEN_KEY_ACCESS_EXPIRED` - Access expired keys that have not yet been deleted.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Access expired keys and keys with expired fields? Do we make this distinction?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no. maybe i can write instead Access expired (sub)keys that have not yet been deleted.

Anyway i made the change on the wrong repo.


<span id="RedisModule_GetOpenKeyModesAll"></span>

Expand Down
Loading