Explain statelessness.
Skip to solutionKEEP THE
mediumSystem Design
Why prefer stateless services and how do you handle sessions?
566 views
01
Understand the problem
statelesssessions
02
Attempt it yourself
Sketch your approach before reading the solution — that's what interviews test.
Nudge consolestandby
Stuck? Beam a request up — the console returns a conceptual nudge that guides your logic without spoiling the implementation.
03
Study the solution
Step 1: Outline use cases and constraints
Gather requirements and scope the problem. Ask questions to clarify use cases and constraints. Discuss assumptions.
Use cases
We'll scope the problem to handle only the following use cases
- User needs to understand
statelessto make architecture decisio
Solution ready — 2 min read
Classified // press E to declassify
04
Read the code
Stateless signed session token
Run Playgroundimport hmac, hashlib, base64
SECRET = b"server-secret" # shared by every instance
def issue(user_id):
payload = ("user=" + str(user_id)).encode()
sig = hmac.new(SECRET, payload, hashlib.sha256).hexdigest()[:12]
return base64.urlsafe_b64encode(payload).decode() + "." + sig
def verify(token):
raw, sig = token.split(".")
payload = base64.urlsafe_b64decode(raw)
expected = hmac.new(SECRET, payload, hashlib.sha256).hexdigest()[:12]
return payload.decode() if hmac.compare_digest(sig, expected) else None
t = issue(42)
print("token :", t)
print("verify :", verify(t)) # ANY stateless instance can validate it
print("tampered:", verify(t[:-1] + "x")) # None -> rejected05
Join the discussion
Discussion (0)
Sign in to join the discussion.
No responses yet. Be the first to share what you think.
Transmission complete // awaiting log
KEEP THE
STREAK ALIVE.
Dossier 26 of 99 decoded in the System Design track. One more won't hurt.