摘要: 接收订阅 发布订阅 接收信息结果 阅读全文
posted @ 2020-02-16 22:47 LeoShi2020 阅读(381) 评论(0) 推荐(0) 编辑
摘要: Python 操作redis 阅读全文
posted @ 2020-02-16 22:41 LeoShi2020 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 通过网络无法访问Redis redis-cli 172.16.1.111 Could not connect to Redis at 127.0.0.1:6379: Connection refused 修改配置文件 vi /etc/redis.conf bind 127.0.0.1 172.16. 阅读全文
posted @ 2020-02-16 21:33 LeoShi2020 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: 设置Redis密码 修改/etc/redis.conf 一定要强密码redis为内存存储 抗暴力破解强 重启服务 登录redis 验证密码 命令直接登录 阅读全文
posted @ 2020-02-16 21:15 LeoShi2020 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 配置文件位置 RDB存储配置 持久化地址 查看持久化文件 关闭RDB 注释掉所有的save项 命令方式 ` 开启AOF 修改配置文件 命令方式(无效) 文件存放路径 参考网站:http://redisdoc.com/persistence/index.html 阅读全文
posted @ 2020-02-16 20:59 LeoShi2020 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 发布订阅 发布:打电话 订阅:接电话 订阅频道 发布信息 接收到订阅 参考网站: http://redisdoc.com/pubsub/index.html 阅读全文
posted @ 2020-02-16 19:19 LeoShi2020 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 哈希相当于下面Python代码 HSET添加哈希 删除哈希 获取所有的key value HMSET一次添加多个键值对 分别获取键值 查看key是否存在 获取总共的键值对 参考网站:http://redisdoc.com/hash/index.html 阅读全文
posted @ 2020-02-16 18:19 LeoShi2020 阅读(248) 评论(0) 推荐(0) 编辑
摘要: SADD 集合添加 SMEMBERS 查看元素 SREM移除元素 SCARD 查看元素个数 SINTER集合交集 SUNION集合并集 集合差集 参考链接:http://redisdoc.com/set/index.html 阅读全文
posted @ 2020-02-16 17:54 LeoShi2020 阅读(243) 评论(0) 推荐(0) 编辑
摘要: LPUSH添加列表 LRANGE 获取全部值 列表左侧添加字符 右侧添加字符串 左右删除列表值 LINDEX列表下标获取值 LLEN列表长度 参考链接 http://redisdoc.com/list/ 阅读全文
posted @ 2020-02-16 17:36 LeoShi2020 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 登录Redis 添加字符串 EX 超期时间60s ` ` 阅读全文
posted @ 2020-02-16 17:18 LeoShi2020 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 系统环境 yum安装 ` ` Redis服务启动 Redis开机启动 查看运行状态 查看程序进程以及端口 6379 阅读全文
posted @ 2020-02-16 17:02 LeoShi2020 阅读(665) 评论(0) 推荐(0) 编辑
摘要: 安装python-memchached插件 pip install python-memcached Collecting python-memcached Downloading python_memcached-1.59-py2.py3-none-any.whl (16 kB) Requirem 阅读全文
posted @ 2020-02-16 13:44 LeoShi2020 阅读(400) 评论(0) 推荐(0) 编辑
摘要: telnet连接memcached 查看端口是否可访问 # telnet 172.16.1.1 11211 Trying 172.16.1.1... Connected to 172.16.1.1. Escape character is '^]'. ^] 添加获取数据 添加语法set没有值的时候添 阅读全文
posted @ 2020-02-16 12:39 LeoShi2020 阅读(174) 评论(0) 推荐(0) 编辑
摘要: # yum install telnet Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Resolving Dependencies --> Running transaction check > P 阅读全文
posted @ 2020-02-16 12:30 LeoShi2020 阅读(548) 评论(0) 推荐(0) 编辑
摘要: shell直接运行 cat > 01.yumrepo.sh << 'EOF' # 创建备份路径 mkdir -p /etc/yum.repos.d/repo.bak/ # 备份源 mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo.bak/ # 导入镜像 阅读全文
posted @ 2020-02-16 12:26 LeoShi2020 阅读(7447) 评论(0) 推荐(0) 编辑
摘要: 查看memcached信息 $ brew info memcached memcached: stable 1.5.22 (bottled), HEAD High performance, distributed memory object caching system https://memcac 阅读全文
posted @ 2020-02-16 11:44 LeoShi2020 阅读(235) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env pyhton # coding:utf-8 # @Time : 2020-02-16 10:07 # @Author : LeoShi # @Site : # @File : demo.py # @Software : MacOS Python 3.7 import s 阅读全文
posted @ 2020-02-16 10:44 LeoShi2020 阅读(3541) 评论(0) 推荐(0) 编辑