博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
redis基础一_常用指令
阅读量:5316 次
发布时间:2019-06-14

本文共 687 字,大约阅读时间需要 2 分钟。

# Redis configuration file example.## Note that in order to read the configuration file, Redis must be# started with the file path as first argument:# ./redis-server /path/to/redis.conf

docker启动redis:

docker run -d -p 6379:6379 -v /home/anmin/Desktop/docker/redis/data:/redis/data -v /home/anmin/Desktop/docker/redis/config:/redis/config redis redis-server /redis/config/redis.conf --appendonly yes

启动 redis 客户端:

切换数据库,redis默认有16个数据库:

DBSIZE:

KEYS:查找所有符合给定模式pattern(正则表达式)的 key 。

 


 

   

    


     

     

   

  

 


返回存储在 key 的列表里指定范围内的元素。 start 和 end 偏移量都是基于0的下标,即list的第一个元素下标是0(list的表头),第二个元素下标是1,以此类推。

偏移量也可以是负数,表示偏移量是从list尾部开始计数。 例如, -1 表示列表的最后一个元素,-2 是倒数第二个,以此类推。

    

   


      


  

    

 

 


  

 

转载于:https://www.cnblogs.com/ustc-anmin/p/11071047.html

你可能感兴趣的文章
修改博客园css样式
查看>>
Python3 高阶函数
查看>>
初始面向对象
查看>>
leetcode Letter Combinations of a Phone Number
查看>>
Unity 5.4 测试版本新特性---因吹丝停
查看>>
7.5 文件操作
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
windows基本命令
查看>>
VMware中CentOS设置静态IP
查看>>
[poj1006]Biorhythms
查看>>
Hyper-V虚拟机上安装一个图形界面的Linux系统
查看>>
Hover功能
查看>>
js千分位处理
查看>>
Mac---------三指拖移
查看>>
字符串类型的相互转换
查看>>
HTTP状态码
查看>>
iOS如何过滤掉文本中特殊字符
查看>>
基础学习:C#中float的取值范围和精度
查看>>
MongoDB-CRUD
查看>>