Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 4.93 KB

File metadata and controls

19 lines (16 loc) · 4.93 KB

Format

service?:namespace:[identifier]

Namespaces

Namespace Expansion Format Description
a:l api:limit a:l:client_ip Rate limit (API server)
d:l discovery:limit d:l:client_ip Rate limit (Discovery server)
s session s:user_id:session_key Persistent cookie session
rl resource_limit rl:resource_type:user_id Daily resource limit for a user
r reading_session r:story_id:session_uuid Story reading session for a user. These sessions use a session UUID, sent when the user starts reading a public story. It is then returned to the API server upon leaving the page. This key is used to determine the total reading duration by computing the difference between its creation time and the current time.
bl blog_login bl:hashed_token User login verification token for blogs hosted on external domain.
l:lgn lock:login l:lgn:email Login resource lock, enforced when the login process encounters too many failed attempts for a user.
l:sgn lock:signup l:sgn:client_up Signup resource lock, enforced when too many users register from the same IP address in a short duration of time.
l:rcv lock:recovery l:rcv:email Account recovery resource lock, enforced when there are too many recovery requests for an account associated with a specific email address.
l:vfy lock:verification l:vfy:email Account e-mail verification resource lock, enforced when there are too many verification requests for an account associated with a specific email address.
l:pwd:rst lock:password:reset l:pwd:rst:email Password reset resource lock, enforced when there are too many password reset requests for an account associated with a specific email address.