码迷,mamicode.com
首页 >  
搜索关键字:redis cluster clusterinit    ( 25611个结果
redis整合springboot
redis参照processon图,包含redis知识库。 https://www.processon.com/mindmap/5fab94d77d9c0865e9bc7838 依赖中配置 org.springframework.boot spring-boot-starter-data-redis ...
分类:编程语言   时间:2020-12-05 10:54:05    阅读次数:9
redis2.8哨兵部署
[root@www_test ~]# cd /root/redis2[root@www_test redis2]# tar -xf redis-2.8.18.tar.gz [root@www_test redis2]# cd redis-2.8.18[root@www_test redis-2.8. ...
分类:其他好文   时间:2020-12-05 10:46:39    阅读次数:5
CentOS 7.5 安装 CDH6.3.2
#install OS centos 7.5#install lsb net-tools package yum install -y redhat-lsb net-tools 1. Configure hostnames Configure each host in the cluster as ...
分类:其他好文   时间:2020-12-04 11:25:24    阅读次数:4
spring boot多数据源配置(mysql,redis,mongodb)实战
pringboot多数据源配置(mysql,redis,mongodb)实战用SpringBootStarter提升效率虽然不同的starter实现起来各有差异,但是他们基本上都会使用到两个相同的内容:ConfigurationProperties和AutoConfiguration。因为SpringBoot坚信“约定大于配置”这一理念,所以我们使用ConfigurationProperties来
分类:数据库   时间:2020-12-04 11:11:32    阅读次数:9
redis批量删除指定前缀key四种方法
第一种: Linux服务器上安装redis,然后进入到bin目录,执行如下命令 ./redis-cli -h IP -p PORT -a PASSWORD keys 'key*' | xargs ./redis-cli -h IP -p PORT -a PASSWORD del IP:redis服务 ...
分类:其他好文   时间:2020-12-04 10:58:03    阅读次数:7
laravel中redis分页
$data = $request->except('_token');$file = $request->file('g_pic')->store('img');$data['g_pic'] = '/'.$file;RedisModel::create($data);return redirect( ...
分类:其他好文   时间:2020-12-04 10:56:14    阅读次数:6
c#使用csredis操作redis
现在流行的redis连接客户端有StackExchange.Redis和ServiceStack.Redis,为什么选择csredis而不是这两个? .net 最有名望的 ServiceStack.Redis 早已沦为商业用途,在 .NETCore 中使用只能充值; 后来居上的 StackExcha ...
分类:Windows程序   时间:2020-12-02 12:35:30    阅读次数:25
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.”
一、报错信息 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.” 二、出现原因 redis连接输入密码后提示Warning: 。。。 三、解决方法 htt ...
分类:其他好文   时间:2020-12-02 12:20:45    阅读次数:7
Redis Windows版安装及整合Spring
大咖揭秘Java人都栽在了哪?点击免费领取《大厂面试清单》,攻克面试难关~>>> 简介 1.Redis 是完全开源免费的,遵守BSD协议,是一个高性能的key-value数据库。 2.Redis支持数据的持久化,可以将内存中的数据保持在磁盘中,重启的时候可以再次加载进行使用。 3.Redis不仅仅支 ...
分类:编程语言   时间:2020-12-02 12:11:06    阅读次数:5
Redis 的底层数据结构(SDS和链表)
Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。可能几乎所有的线上项目都会使用到 Redis,无论你是做缓存、或是用作消息中间件,用起来很简单方便,但可能大多数人并没有去深入底层的看看 Redis 的一些策略实现等等细节。 正好最近也在项目开发中 ...
分类:其他好文   时间:2020-12-02 12:05:07    阅读次数:4
25611条   上一页 1 ... 55 56 57 58 59 ... 2562 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!