Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. # Redis 4.0 release notes
  2.  
  3. ## Upgrade urgency levels:
  4. - `LOW` : No need to upgrade unless there are new features you want to use.
  5. - `MODERATE` : Program an upgrade of the server, but it's not urgent.
  6. - `HIGH` : There is a critical bug that may affect a subset of users. Upgrade!
  7. - `CRITICAL`: There is a critical bug affecting MOST USERS. Upgrade ASAP.
  8.  
  9. ## Redis 4.0.14 Released Mon Mar 18 17:22:10 CEST 2019
  10. This release just backports a few fixes from Redis 5:
  11.  
  12.  
  13. ## Redis 4.0.13 Released Wed Feb 20 17:25:31 CEST 2019
  14. This release just backports a few fixes from Redis 5:
  15.  
  16.  
  17. ## Redis 4.0.12 Released Tue Dec 11 18:06:12 CEST 2018
  18. *This backports the following Redis 5 fixes back into Redis 4.*
  19. Please check the Redis 5 changelog or see the full commit messages for more information. Note that there are important fixes to the AOF implementation so Redis 4.0.12 should be considered as a worthwhile upgrade in production environments where AOF is used and there is the idea of sticking with Redis 4 for some time.
  20.  
  21.  
  22. ## [HIGH] Redis 4.0.11 Released Fri Aug 03 17:09:24 CEST 2018
  23. **HIGH**: not critical but very important bugs fixed.
  24.  
  25. - 마스터와 슬레이브 간, 연결이 중단된 시간이 잘못된 위치에서 갱신된다. 이로 인해 때때로 **GOOD SLAVE** 는 failover 할 수 없게 되는데, 마스터로부터 연결이 중단된지 너무 오랜 시간이 지나버렸다고 판단해버리기 때문이다.
  26. - 리플리케이션 버그. 매우 드물지만 발생할 수 있는 버그. Redis Labs에 의해 뒤늦게 발견되었고, Ora Agra 에 의해 수정되었다. 리플리케이션을 중단되거나 동기화되지 않거나 기타 다른 이슈가 있습니다.
  27. - `RANDOMKEY`는 특수한 상황에서 무한 루프에 빠져버리는 현상이 발생할 수 있다. 현재는 수정되었다.
  28. - `EXISTS` 커맨드가 슬레이브에서 좀 더 일관된 방법으로 동작하도록 수정되었다.
  29. - Sentinel: 잠재적으로 보안 이슈를 야기할 수 있는 것을 방지하기 위하여 백포팅이 있었다. 실행하려는 임의의 스크립트를 설정하는데에 SENTINEL (SET) 커맨드가 사용될 때의 보안 이슈.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement