Skip to content

Instantly share code, notes, and snippets.

@up1
Last active February 17, 2026 13:11
Show Gist options
  • Select an option

  • Save up1/0c9dc3fcf76f6478e6c86f0a2a57281d to your computer and use it in GitHub Desktop.

Select an option

Save up1/0c9dc3fcf76f6478e6c86f0a2a57281d to your computer and use it in GitHub Desktop.
Redis design 01
// ค้นหา word1 และ word 2
ZINCRBY search:freq:2026-02-17 1 "word1"
ZINCRBY search:freq:2026-02-17 1 "word1"
ZINCRBY search:freq:2026-02-17 1 "word2"
// ดูผลการค้นหา
ZREVRANGE search:freq:2026-02-17 0 4 WITHSCORES
// ผล
1) "word1"
2) "2"
3) "word2"
4) "1"
// ดูจำนวนการค้นหาตาม keyword
ZSCORE search:freq:2026-02-17 "word1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment