You must replace the baseURL in hugo.toml file when deploying, you can manage this announcement from the params.toml file.
redis 缓存数据技术

redis 缓存数据技术

Redis 是一种开源(BSD 许可)内存数据结构存储,可用作数据库、缓存和消息代理。

Table of Contents

安装

使用docker容器安装,方便快捷

以下是docker-compose.yaml文件示例

version: "3"

services:
  redis:
      image: redis:6.2.6
      container_name: redis
      command: redis-server --requirepass you_password --appendonly yes
      restart: always
      environment:
        TZ: Asia/Shanghai
        LANG: en_US.UTF-8
      ports:
        - 6379:6379
      volumes:
        - /home/docker/redis/data:/data
        - /home/docker/redis/conf:/usr/local/etc/redis

然后运行 docker-compose up -d 拉取和启动容器服务


使用

登录redis服务

redis-cli -h 主机 -p 6379 -a 密码 --raw

进入redis容器

docker exec -it redis bash

清除所有key

FLUSHALL

查看所有key

keys *

其它

python批量删除key

import redis

r = redis.Redis(host='127.0.0.1', port=6379, password='you_password', db=0)

for key in r.scan_iter(match='cacheKey:*'):
    print(key)
    r.delete(key)
    #if r.ttl(key) < 14400:
    #    print('----del----', key)
    #    r.delete(key)
Tags :
comments powered by Disqus

Related Posts

小孩的教育思考

小孩的教育思考

在小孩的教育问题上,培养性格爱好、加强身体锻炼、训练学习方法是非常重要的。

Read More
How to build an Application with modern Technology

How to build an Application with modern Technology

Nemo vel ad consectetur namut rutrum ex, venenatis sollicitudin urna. Aliquam erat volutpat.

Read More
centos 服务器操作系统

centos 服务器操作系统

CentOS是Linux发行版之一,它是来自于Red Hat Enterprise Linux依照开放源代码规定发布所编译而成。

Read More