Skip to content
Merged
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
2 changes: 2 additions & 0 deletions src/key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ bitflags! {
const NOEFFECTS = REDISMODULE_OPEN_KEY_NOEFFECTS as c_int;
/// Access lazy expire fields
const ACCESS_EXPIRED = REDISMODULE_OPEN_KEY_ACCESS_EXPIRED as c_int;
/// Allow access to a trimmed key that hasent't been deleted yet
const ACCESS_TRIMMED = REDISMODULE_OPEN_KEY_ACCESS_TRIMMED as c_int;
}
}

Expand Down
Loading