Last active
February 17, 2026 13:11
-
-
Save up1/0c9dc3fcf76f6478e6c86f0a2a57281d to your computer and use it in GitHub Desktop.
Redis design 01
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ค้นหา 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