Guoxiong Li
Guoxiong Li
Hi all, When developing zookeeper, we often start or debug it by using the current source code instead of the built package. So it is good to add the classes...
Hi all, The directory `zookeeper-server/src/main/resources/lib` doesn't have libs. So it is good to remove it from the shell script. Thanks for taking the time to review. Best Regards, -- Guoxiong
Hi all, This patch implements the feature we had discussed at the mail list and the issue SKARA-1199 [1], included mainly the proposal I submitted [2] and the suggestions and...
Hi @antirez, At present, many companies use redis cluster to cache data or do other things. If these companies want to use the RedLock algorithm to implement distributed locks, they...
Hi all, This patch places the SerialGC code that computes tenuring threshold before per GC instead of after per GC, so that the method `AgeTable::print_on` prints the right tenuring threshold....
Hi all, This patch removes the `CardTable::_guard_region`. Thanks for taking the time to review. Best Regards, -- Guoxiong --------- ### Progress - [x] Change must be properly reviewed (1 review...
Hi all, When an object size meets the following three conditions, the allocation will fail unexpectedly. 1. `object_size` > `uncommitted_size` 2. `object_size` > `committed_but_unused_size` 3. `object_size` < `unused_size` (`unused_size` equals...