"user.*" khớp đúng một từ sau "user" — match "user.created", "user.deleted" nhưng KHÔNG match "user.profile.updated". "user.#" khớp không hoặc nhiều từ sau "user" — match "user.created", "user.profile.updated", và thậm chí chỉ "user" không.
Dùng * khi muốn segment chính xác (event type cụ thể); dùng # cho subscription rộng (toàn bộ category).
"user.*" matches exactly one word after "user" — it matches "user.created" and "user.deleted" but NOT "user.profile.updated". "user.#" matches zero or more words — it matches "user.created", "user.profile.updated", and even just "user".
Use * for exact segments; use # for broad category subscriptions.