- 授权协议: MIT
- 开发语言: Lua
- 操作系统: Linux
- 软件首页: https://github.com/RedisLabs/redis-lua-debugger
- 软件文档: https://github.com/RedisLabs/redis-lua-debugger
软件介绍
rld 是一个非交互的调试工具,用于调试 Redis 的 Lua 脚本,这里有篇详细介绍的文章。
rld 特性包括:
易于安装,只有 6kB
可打印输出到本地和远端
跟踪执行的代码行
先进的数值变化的自动监控机制报告
报告函数调用、返回和参数可进行实时检查
基本使用:
Load rld.lua to Redis once (e.g.
redis-cli --eval rld.lua).Add this line at the beginning of your Lua script:
rld.start().Run your code as usual (e.g.
redis-cli --eval prog.lua).View rld's output in Redis' log file or by subscribing to the
rldchannel.
API
rld.start()- starts the debuggerrld.stop()- stops the debuggerrld.troff()/rld.tron()- toggles tracing off/onrld.options- debugger options, see source for details
Effective C++中文版
[美] Scott Meyers / 侯捷 / 华中科技大学出版社 / 2001-9 / 49.80元
Effective C++是世界顶级C++大师Scott Meyers的成名之作,初版于1991年。在国际上,这本书所引起的反响之大,波及整个计算机技术出版领域,余音至今未绝。几乎在所有C++书籍的推荐名单上,这部专著都会位于前三名。作者高超的技术把握力,独特的视角、诙谐轻松的写作风格、独具匠心的内容组织,都受到极大的推崇和仿效。 书中的50条准则,每一条都扼要说明了一个可让你写出更好的C+......一起来看看 《Effective C++中文版》 这本书的介绍吧!
