pengkobe / reading-notes

:stars: to record daily reading notes. I build an issue blog to record daily FE study notes. suggestion and comments are welcomed.
https://github.com/pengkobe/reading-notes/issues
MIT License
13 stars 1 forks source link

Redis 入门 #40

Open pengkobe opened 7 years ago

pengkobe commented 7 years ago

C 语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库,并提供多种语言的API。从 2010 年 3 月 15 日起,Redis 的开发工作由 VMware 主持。从 2013 年 5 月开始,Redis 的开发由 Pivotal 赞助。

优势

基本使用

我们可以使用 redis-cli 进行命令行操作,如输入 ping 输出 PONG 则代表 redis 已经正确安装。用起来还是比较舒服的,居然还有代码提示。

redis.conf

在命令行中,可以使用 CONFIG GET * 获取所有配置信息, CONFIG SET CONFIG-NAME CONFIG-VALUE来修改配置,当然你也可以直接通过 redis.conf 文件来查看或编辑相关配置。

数据类型( 5 种)

基本命令

参考

http://www.yiibai.com/redis/redis_quick_guide.html

pengkobe commented 6 years ago

运维