赞
踩
官网: https://redis.io
中文网: https://www.redis.net.cn/
brew install redis
brew services start redis
brew services stop redis
redis-cli -h localhost -p 6379
cd /opt/homebrew/etc
open redis.conf
redis-server /opt/homebrew/etc/redis.conf
➜ ~ redis-cli
127.0.0.1:6379> keys *
(error) NOAUTH Authentication required.
127.0.0.1:6379>
说明已开启密码
➜ ~ redis-cli -a 123456
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
127.0.0.1:6379> keys *
(empty array)
127.0.0.1:6379>
➜ ~ redis-cli
Could not connect to Redis at 127.0.0.1:6379: Connection refused
没有启动redis的服务
redis-server
Redis存储的是key-value结构的数据,其中key是字符串类型,value有5种常用的数据类型:
Redis 中字符串类型常用命令:
更多命令可以参考Redis中文网:https://www.redis.net.cn
Redis hash 是一个string类型的 field 和 value 的映射表,hash特别适合用于存储对象,常用命令:
Redis 列表是简单的字符串列表,按照插入顺序排序,常用命令:
Redis set 是string类型的无序集合。集合成员是唯一的,这就意味着集合中不能出现重复的数据,常用命令:
Redis有序集合是string类型元素的集合,且不允许有重复成员。每个元素都会关联一个double类型的分数。常用命令:
常用命令:
Redis的通用命令是不分数据类型的,都可以使用的命令:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。