Using redis-cli, I connected to a specific server:
redis-cli -h 10.1.xx.xx
And select 1
Then just to get a list of key features:
KEYS data_column*
This will print a list of the values ββof this column on the command line. However, like many other values, I want to save the query output to a file.
In general, using > file_name after running the command. But in this case it does not work, as on the redis server, although from the command line. How to save such a query result?
redis redis-cli
xavi
source share