Skip to content

Fix docs about the A param of KSN config #1803

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

Merged
merged 3 commits into from
Jul 8, 2025
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
10 changes: 5 additions & 5 deletions content/develop/pubsub/keyspace-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ following table:
d Module key type events
x Expired events (events generated every time a key expires)
e Evicted events (events generated when a key is evicted for maxmemory)
m Key miss events (events generated when a key that doesn't exist is accessed)
n New key events (Note: not included in the 'A' class)
o Overwritten events (events generated every time a key is overwritten)
c Type-changed events (events generated every time a key's type changes)
A Alias for "g$lshztxed", so that the "AKE" string means all the events except "m" and "n".
m Key miss events generated when a key that doesn't exist is accessed (Note: not included in the 'A' class)
n New key events generated whenever a new key is created (Note: not included in the 'A' class)
o Overwritten events generated every time a key is overwritten (Note: not included in the 'A' class)
c Type-changed events generated every time a key's type changes (Note: not included in the 'A' class)
A Alias for "g$lshztdxe", so that the "AKE" string means all the events except "m", "n", "o" and "c".

At least `K` or `E` should be present in the string, otherwise no event
will be delivered regardless of the rest of the string.
Expand Down
Loading