摘要: 有时需要给自己写的小程序做个简单的 benchmark,查看内存使用情况和运行时间。这时可以试试 valgrind。 Ubuntu 下安装很简单: 显示堆空间使用情况 用图表表示堆空间使用情况 用图表表示所有空间的内存占用情况 "Reference" Written with "StackEdit" 阅读全文
posted @ 2018-10-09 17:52 LexLuc 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Spark Shell Example 1 Process Data from List: Example 2 Process Data from Local Text File RDD transformation and action can now be applied on the Exam 阅读全文
posted @ 2018-10-09 17:44 LexLuc 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 变量作用域 自 ES2015 起,JS 引入 和 关键词定义变量的块作用域(Block Scope)。 仅支持全局作用域(Global Scope)和函数作用域(Function Scope); 支持块作用域,即严格定义作用域在花括号 里面; 不仅支持块作用域,且定义的变量无法再修改。 javasc 阅读全文
posted @ 2018-10-09 12:53 LexLuc 阅读(188) 评论(0) 推荐(0) 编辑