➜ 7Debug git:(main) ✗ redis-cli --ldb --eval /Users/mw/Desktop/Github/Integration/Redis/7Debug/script1.lua list_a list_b , 10 Lua debugging session started, please use: quit -- End the session. restart -- Restart the script in debug mode again. help -- Show Lua script debugging commands.
* Stopped at 1, stop reason = step over -> 1 local src = KEYS[1] # 打印keys lua debugger> print KEYS <value> {"list_a"; "list_b"} # 打印参数 lua debugger> print ARGV <value> {"10"} # 初始化队列 list_a、list_b lua debugger> r lpush list_a 1 2 3 4 <redis> lpush list_a 1 2 3 4 <reply> 4 lua debugger> r lpush list_b a b c d <redis> lpush list_b a b c d <reply> 4 lua debugger> n * Stopped at 2, stop reason = step over -> 2 local dst = KEYS[2] lua debugger> n * Stopped at 3, stop reason = step over -> 3 local count = tonumber(ARGV[1]) lua debugger> n * Stopped at 5, stop reason = step over -> 5 local item = redis.call('rpop', src) # next 执行pop lua debugger> n <redis> rpop list_a <reply> "1" * Stopped at 6, stop reason = step over -> 6 redis.call('lpush', dst, item) # next 执行push lua debugger> n <redis> lpush list_b 1 <reply> 5 * Stopped at 7, stop reason = step over -> 7 returntrue # r: redis; 获取list元素 lua debugger> r lrange list_a 0 -1 <redis> lrange list_a 0 -1 <reply> ["4","3","2"] # r: redis; 获取list元素 lua debugger> r lrange list_b 0 -1 <redis> lrange list_b 0 -1 # 执行成功 <reply> ["1","d","c","b","a"] # 重启,将所有执行回滚 lua debugger> restart
Lua debugging session started, please use: quit -- End the session. restart -- Restart the script in debug mode again. help -- Show Lua script debugging commands.
* Stopped at 1, stop reason = step over -> 1 local src = KEYS[1] # 回滚至无数据 lua debugger> r lrange list_b 0 -1 <redis> lrange list_b 0 -1 <reply> [] lua debugger>
断点调试
断点操作
# 写入redis 准备数据 ➜ 7Debug git:(main) ✗ redis-cli 127.0.0.1:6379> lpush list_a 1 2 3 4 (integer) 4 127.0.0.1:6379> lpush list_b a b c d (integer) 4 127.0.0.1:6379> llen list_a (integer) 4 127.0.0.1:6379> llen list_b (integer) 4 127.0.0.1:6379>
# 获取全部文件 lua debugger> w 1 local src = KEYS[1] 2 local dst = KEYS[2] 3 local count = tonumber(ARGV[1]) 4 -> 5 while count < 10 do 6 local item = redis.call('rpop', src) 7 if item == falsethenbreak end 8 redis.call('lpush', dst, item) 9 count = count -1 10 end 11 12 return redis.call('llen', dst); # 显示第7行 【l:list】 lua debugger> l 7 2 local dst = KEYS[2] 3 local count = tonumber(ARGV[1]) 4 -> 5 while count < 10 do 6 local item = redis.call('rpop', src) 7 if item == falsethenbreak end 8 redis.call('lpush', dst, item) 9 count = count -1 10 end 11 12 return redis.call('llen', dst); # 显示第7行前后一行 【l:list】 lua debugger> l 7 1 6 local item = redis.call('rpop', src) 7 if item == falsethenbreak end 8 redis.call('lpush', dst, item) lua debugger> b 6 -> 5 while count < 10 do #6 local item = redis.call('rpop', src) 7 if item == falsethenbreak end # continue 继续,直到断点执行 lua debugger> c