redisCluster 에서 key 방식 을 모호 하 게 가 져 옵 니 다.
이런 문 제 를 감안 하여 두 가지 사고 가 생 겼 는데 다음 과 같다.
프로젝트 1:
같은 tag 를 알 고 있 는 KV 는 한 노드 에 있 기 때문에 key 가 같은 hashtag 를 가지 고 있 으 면 한 노드 에 있 기 때문에 이 노드 를 스 캔 하면 됩 니 다.그러면 클 러 스 터 를 한 점 으로 전환 합 니 다.
@RequestMapping(value = "/ceshi", method = RequestMethod.GET)
@ResponseBody
public void Rediskeys() {
/**
*
* @param pattern key
* @param count , , redis 。
* @return key
*/
try{
jedisCluster.getClusterNodes();
ScanParams scanParams = new ScanParams();
scanParams.match("{operatingSystem}*");
scanParams.count(1000);
ScanResult<String> result = jedisCluster.scan("0", scanParams);
List<String> keyList = result.getResult();
System.out.println("keyList======="+keyList);
}finally{
}
}
//scanParams.match("*{zmc}*");//success
//scanParams.match("ZMC_text:{zmc}*");//success
상기 match 방법 에서:괄호 안의 매개 변 수 는 상기 방식 으로 작성 할 수 있 습 니 다.키 를 redis 에 업로드 하 는 것 이 관건 입 니 다.이름 을 짓 는 방법 에는{}이 있어 야 합 니 다.
그리고{}앞,뒤에 인자 가 있 는 지 지정 해 야 합 니 다.키 가 ZMC 라면text: {zmc}:1
scanParams.match("{zmc}*");
프로젝트 2:모든 노드 를 가 져 오고 각 노드 를 스 캔 하 며 pattern 에 따라 노드 의 key 를 가 져 와 통합 하면 됩 니 다.
메모:cluster 모드 에서 다 중 key 작업 을 수행 할 때 이 key 들 은 같은 slot 에 있어 야 합 니 다.그렇지 않 으 면 JedisDataException 이상 을 보고 합 니 다.
@RequestMapping(value = "/ceshi3", method = RequestMethod.GET)
@ResponseBody
public void RedisKeys() {
String redisKeyStartWith="Ad:ads:id:";
try {
Map<String, JedisPool> clusterNodes = jedisCluster.getClusterNodes();
for (Map.Entry<String, JedisPool> entry : clusterNodes.entrySet()) {
Jedis jedis = entry.getValue().getResource();
// ( , )
if (!jedis.info("replication").contains("role:slave")) {
Set<String> keys = jedis.keys(redisKeyStartWith + "*");
if (keys.size() > 0) {
Map<Integer, List<String>> map = new HashMap<>();
for (String key : keys) {
// cluster key , key slot , :JedisDataException:
// CROSSSLOT Keys in request don't hash to the same slot
int slot = JedisClusterCRC16.getSlot(key);
// slot key , slot key
if (map.containsKey(slot)) {
map.get(slot).add(key);
} else {
map.put(slot, Lists.newArrayList(key));
}
}
for (Map.Entry<Integer, List<String>> integerListEntry : map.entrySet()) {
System.out.println("integerListEntry="+integerListEntry);
//jedis.del(integerListEntry.getValue().toArray(new String[integerListEntry.getValue().size()]));
}
}
}
}
logger.info("success redisKeys:{}", redisKeyStartWith);
} finally {
}
}
redis 클 러 스 터 모든 key 가 져 오기redis 단일 컴퓨터 에서 모든 key 명령 조회
keys *
검색 결과 예시:
redis 클 러 스 터 에서 모든 키 명령 찾기:
keys*를 사용 하면 이 서버 의 모든 key 를 조회 합 니 다.클 러 스 터 가 아 닙 니 다.
정확 한 명령 은
./redis-cli -c --cluster call 192.168.168.161:7001 keys \*
주의:
1.삭제 할 수 없다\\;
2.redis 군집 의 한 노드 의 ip 와 포트 로 바 꿉 니 다.
3.클 러 스 터 에 비밀번호 가 있 으 면 인자-a password(redis 클 러 스 터 비밀번호)를 추가 합 니 다.예 를 들 어 로 컬 테스트 환경 조회 결과:
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Redis 해시에 대한 완벽한 가이드변경 가능하므로 필요에 따라 쉽게 변경하고 업데이트할 수 있습니다. Redis 해시는 구조가 평평하므로 JSON에서와 같이 여러 수준을 가질 수 없습니다. redis 해시의 명명 규칙은 hash:key 로 입력되므로...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.