fixed wrong angle direction

pull/830/head
Rui Gu 8 years ago
parent 6a48ef0c4f
commit 09077c7ab7

@ -419,7 +419,7 @@ public class RedissonMapCache<K, V> extends RedissonMap<K, V> implements RMapCac
+ "end; "
+ "end; "
+ "local newValue = tonumber(ARGV[3]); "
+ "if expireDate <= tonumber(ARGV[1]) then "
+ "if expireDate >= tonumber(ARGV[1]) then "
+ "newValue = tonumber(val) + newValue; "
+ "end; "
+ "local newValuePack = struct.pack('dLc0', t + tonumber(ARGV[1]), string.len(newValue), newValue); "

Loading…
Cancel
Save