string类型的方法:
1) APPEND key 'string1’
功能: 字符串拼接
样例输出:stringstring1
备注:当key-value不存在,则相当于set
2) STRLEN key
功能:字符串长度计算
样例输出:6
3)INCR key(自增1) / INCRBY key number(自增number)
功能: 自增
样例输出:{‘key’:0}运行完成{‘key’:1}
4)DECR key(自减1) / DECRBY key number(自减number)
功能: 自减
样例输出:{‘key’:1}运行完成{‘key’:0}
5)GERRANG key start_index end_index
功能: 截取startindex 到endindex的字符串
样例输出:GERRANG key 0 2运行输出 str
备注: index起始为0,0 -1代表全部字符串,0 3代表[0,3]左闭右闭
6)GERRANG key start_index end_index
功能: 截取startindex 到endindex的字符串
样例输出:GERRANG key 0 2运行输出 str
备注: index起始为0,0 -1代表全部字符串,0 3代表[0,3]左闭右闭
命令 | 作用 |
---|---|
select | 切换数据库 |
keys * | 查看所有的key |
get key | 查看value |
flushdb | 清空当前数据库 |
flushall | 清空所有数据库 |
exists key | 判断key是否存在 |
move key 1 | 把1数据库当中的key移除 |
expire key 10 | 设置key的过期时间为10s |
set keyname value | 创建key-value |
type key | 查看key的类型 |
ttl key | 查看key剩余时间 |
append key “string1” | 字符串拼接key-stringstring1 |
redis-benchmark压力测试工具
选项 | 功能 |
---|---|
-h | 指定主机ip |
-p | 端口号 |
-c | 指定连接数 |
-n | 请求数 |
–csv | 以csv格式输出 |
#10为并发请求1000次本地redis redis-benchmark -h localhost -p 6379 -c 10 -n 1000