- 浏览: 4314 次
最新评论
文章列表
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:/mave ...
http://redis.io/topics/cluster-tutorial
Redis cluster tutorial
This document is a gentle introduction to Redis Cluster, that does not use complex to understand distributed systems concepts. It provides instructions about how to setup a cluster, test, and operate it, without going into the details t ...
一、git中一些基本概念
1.工作区 当前直接操作的内容
2.暂存区 临时存放改变的内容
3.版本库 仓库中保存的内容
二、git存储变化
1.git add file
暂存区目录树更新
修改或者增加的文件内容会写到对象库中的对象中
2.git commit -m "这里可以填写提交的注释"
暂存区目录树写到版本库中
3.工作区和暂存区比较
git diff file
4.暂存区和HE ...
1 开发说明
1.1 project说明
1.1.1 下载地址
工程下载地址:ssh://xxx@apaciccc5086:29418/emarket.git (用git)
demo工程下载地址:ssh://xxx@apaciccc5086:29418/microservice.git(用git)
xxx 表示自己的git用户名
1.1.2 一个parent工程,其他都是子工程
下载后,如下图所示:
有五个工程
l emarket : 父工程。最重要的是包含pom.xml文件。子工程的pom文件都继承它。开发不涉及。
l emarket-config-server : 子工 ...
redis 规划
ip 端口 主/从 slots
172.19.149.126:9001 master1 (1-5000)
172.19.149.126: 9002 slave3
172.19.149.126: 9003 master2 (5001-10000)
172.19.149.127: 9001 slave2
172.19.149.127: 9002 master3 (10001-16383)
172.19.149.127: 9003 slave1
操作步骤
1 master节点相互 meet 形成集群
cl ...