最新 最热

Redis 学习笔记 2.4 配置

1 启动时配置文件传入安装目录下存在一个参考的配置文件 redis.conf2 运行时动态查看修改(仅限部分参数)ubuntu@VM-0-6-ubuntu:~$ redis-cli127.0.0.1:6379> CONFIG GET(error) ERR Unknown subcommand or wrong......

2020-04-17
0

prometheus之监控redis

进入server端所在服务器,修改prometheus.yml配置文件,添加一个job配置项,然后重新启动prometheus server端。

2020-04-17
1

redis设计

@Bean(name = "person", initMethod = "init",destroyMethod = "destroy") public Person person() { return new Person(); }

2020-03-09
0

stackexchange.redis

redis客户端using ControlSystem.Log;using StackExchange.Redis;using System;using System.Collections.Generic;using System.Configuration;using System.IO;using ...

2020-02-25
0

python 多进程和协程配合使用

有一批key已经写入到3个txt文件中,每一个txt文件有30万行记录。现在需要读取这些txt文件,判断key是否在数据仓库中。(redis或者mysql)

2020-02-25
1

Springboot项目的接口防刷(实例)

链接:blog.csdn.net/weixin_42533856/article/details/82593123

2020-02-14
1

python 分析redis

#!/usr/bin/env python#coding=utf-8import MySQLdbimport redisimport osimport socket,fcntl,struct#print redis._file_def get_ip_address(ifname):    s = soc...

2020-01-13
0

python之操作redis

# coding:utf8# 导入模块import redis# 连接redis库# r = redis.Redis(host='192.168.10.128',port=6379,db=0) # 主要是为了向后兼容r = redis.StrictRedis(host='192.168.10.128',p...

2020-01-10
0

python的一致性算法hash_rin

下载地址:https://pypi.python.org/pypi/hash_ring/

2020-01-09
1

Linux开放端口方法

iptables -I INPUT -p TCP --dport 80 -j ACCEPT

2019-12-18
1