Last active
March 25, 2024 10:05
-
-
Save relyky/82e159f9d4a31dc97596a5c0e4860079 to your computer and use it in GitHub Desktop.
redis-cli, memurai-cli 指令範例
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
連線 on Linux | |
redis-cli ## 預設 localhost:6379 | |
redis-cli -h <hostname> -p <port:6379> | |
連線 on windows | |
memurai-cli ## 預設 localhost:6379 | |
memurai-cli -h <hostname> -p <port:6379> | |
> PING ## PONG | |
> SET key value | |
> GET key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment