どのバージョンのredisを使用していますか? 2.2.2では二重引用符を使用して問題なく動作します
[email protected]:~# redis-cli
redis> set "test space" hello
OK
redis> get "test space"
"hello"
redis> get 'test space'
(error) ERR wrong number of arguments for 'get' command
redis>
どのバージョンのredisを使用していますか? 2.2.2では二重引用符を使用して問題なく動作します
[email protected]:~# redis-cli
redis> set "test space" hello
OK
redis> get "test space"
"hello"
redis> get 'test space'
(error) ERR wrong number of arguments for 'get' command
redis>