- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在对我们的代码库进行优化时,我们尝试使用 bang 方法来减少有意义的对象分配,但我们在基准测试中观察到分配的对象数量减少但整体内存大小增加。
复制脚本:
# frozen_string_literal: true
require 'bundler/inline'
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'benchmark-memory', '0.1.2'
end
require 'benchmark/memory'
def with_bang(*methods)
methods.tap(&:flatten!)
end
def without_bang(*methods)
methods.flatten
end
Benchmark.memory do |x|
x.report("with_bang") { with_bang(:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o) }
x.report("without_bang") { without_bang(:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o) }
x.compare!
end
# Output
# Ruby version: ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-darwin19]
# INPUT: (:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o)
# Calculating -------------------------------------
# with_bang 160.000 memsize ( 0.000 retained)
# 1.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# without_bang 80.000 memsize ( 0.000 retained)
# 2.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# Comparison:
# without_bang: 80 allocated
# with_bang: 160 allocated - 2.00x more
# INPUT: (:a, :b, :c, :d, :e, [:f, :g], :h, :i, :j, :k, :l, :m, :n, :o)
# Calculating -------------------------------------
# with_bang 240.000 memsize ( 0.000 retained)
# 3.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# without_bang 480.000 memsize ( 0.000 retained)
# 3.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# Comparison:
# with_bang: 240 allocated
# without_bang: 480 allocated - 2.00x more
在我的实验中,我相信这是由于 splat 运算符转换为数组。以下是暗示我得出这个结论的脚本。
# frozen_string_literal: true
require 'bundler/inline'
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'benchmark-memory', '0.1.2'
end
require 'benchmark/memory'
def with_splat(*methods)
methods.flatten!
end
def without_splat
methods = [:a, :b, :c, :d, :e, [:f, :g], :h, :i, :j, :k, :l, :m, :n, :o]
methods.flatten!
end
Benchmark.memory do |x|
x.report("with_splat") { with_splat(:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o) }
x.report("without_splat") { without_splat }
x.compare!
end
# Output
# Ruby version: ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-darwin19]
# INPUT: (:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o)
# Calculating -------------------------------------
# with_splat 160.000 memsize ( 0.000 retained)
# 1.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# without_splat 40.000 memsize ( 0.000 retained)
# 1.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# Comparison:
# without_splat: 40 allocated
# with_splat: 160 allocated - 4.00x more
# INPUT: (:a, :b, :c, :d, :e, [:f, :g], :h, :i, :j, :k, :l, :m, :n, :o)
# Calculating -------------------------------------
# with_splat 240.000 memsize ( 0.000 retained)
# 3.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# without_splat 240.000 memsize ( 0.000 retained)
# 3.000 objects ( 0.000 retained)
# 0.000 strings ( 0.000 retained)
# Comparison:
# with_splat: 240 allocated
# without_splat: 240 allocated - same
我缺少什么来理解这种行为?为什么它会以这种方式行事?
最佳答案
让我们更仔细地检查这两个数组:
require 'objspace'
def with_splat(*methods)
ObjectSpace.dump(methods, output: open('with_splat.json', 'w'))
end
def without_splat(methods)
ObjectSpace.dump(methods, output: open('without_splat.json', 'w'))
end
with_splat(:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o)
without_splat([:a, :b, :c, :d, :e, :f, :g, :h, :i, :j, :k, :l, :m, :n, :o])
ObjectSpace.dump_all(output: open('all_objects.json', 'w'))
该脚本生成 3 个文件:
with_splat.json
包含有关 splatted 数组的数据 without_splat.json
包含有关非分割数组的数据 all_objects.json
包含所有对象的数据(很多!)with_splat.json
:(格式化)
{
"address": "0x7feb941289a0",
"type": "ARRAY",
"class": "0x7feb940972c0",
"length": 15,
"memsize": 160,
"flags": {
"wb_protected": true
}
}
without_splat.json
:(格式化)
{
"address": "0x7feb941287e8",
"type": "ARRAY",
"class": "0x7feb940972c0",
"length": 15,
"shared": true,
"references": [
"0x7feb941328d8"
],
"memsize": 40,
"flags": {
"wb_protected": true
}
}
正如你所看到的,后一个数组确实消耗更少的内存(40 vs 160),但它也有
"shared": true
设置并引用内存地址
0x7feb941328d8
处的另一个对象.
all_objects.json
中找到那个对象通过
jq :
$ jq 'select(.address == "0x7feb941328d8")' all_objects.json
{
"address": "0x7feb941328d8",
"type": "ARRAY",
"frozen": true,
"length": 15,
"memsize": 160,
"flags": {
"wb_protected": true
}
}
这就是与上面第一个数组具有相同 memsize 的实际数组。
"frozen": true
放。我假设 Ruby 在遇到数组文字时会创建这些卡住数组。然后它可以在评估时创建便宜的(更)共享数组。
关于ruby-on-rails - 方法定义中的 Ruby Splat 运算符占用更多内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64550672/
我正在阅读 SQL/92(我是新手),它经历了不同的数据类型。其中之一是CHAR,我当然知道它与java中的String非常相似,而不是java中的char。但我们假设它是 CHAR(1)。只有一个字
我的 mysqld 进程消耗了 232% 的 CPU,并且有 14000 多个连接 (我对这件事有点陌生,但关注 Stack Overflow 寻求帮助)。 顶部: PID USER P
Tomcat 服务器占用 100% 的 CPU,但仅在 PRD。我们无法在其他环境中重现这一点。 进行线程转储后,我们发现有一些线程处于等待/可运行状态,但无法找到我们如何找到根本原因。 你能帮忙吗?
我正在使用 Xcode、SpriteKit 和 Swift 构建我的第一款 iPhone 游戏。我对这些技术不熟悉,但我熟悉一般的编程概念。 这是我想用英语做的事情。我想让圆圈随机出现在屏幕上,然后开
我的套接字消耗了 100% 的计算机 CPU。有 150 个客户端每 30 秒异步向服务器发送消息。有谁知道如何解决这个问题?下面是我的 ServerSocket 类 public class Ser
一段时间后(有时几分钟,有时几天),我的应用开始消耗 100% 的 CPU。正如我从 VisualVM 看到的那样,它总是发生在 org.elasticsearch.common.netty.chan
在我的容器 Controller 中,用户可以平移 View 以切换到不同的 View 。当平移手势开始时,它会将新 View Controller 的 View 添加到 View 中:view.in
假设我在数据框中有两列,其中一列不完整。 df = pd.DataFrame({'a': [1, 2, 3, 4], 'b':[5, '', 6, '']}) df Out: a b
在Ubuntu 16.04 LTS中,pyteserract脚本吃得太高,导致系统间歇性重启。 top命令输出为 top - 21:23:31 up 27 min, 4 users, lo
我在具有 88 个内核和 60 个 reducer 的 hadoop 集群上运行 mapreduce 作业。由于某种原因,它只使用了 79 个集群核心。开始时它运行 79 个映射器,但当完成一半拆分时
我正在对机器上的所有用户进行查询,当它执行时,它会占用 100% 的 CPU 并锁定系统。我已经等了 5 分钟,但什么也没有发生。 在任务管理器中,wmiprvse.exe 占用了所有 CPU。当我终
我正在从套接字(通过 TCP 协议(protocol))读取消息,但我注意到 CPU 花费大量时间来调用 BufferedInputStream 的 available() 方法。这是我的代码:
我有 6 个线程。其中一个线程进入某个范围并打开“锁定”和所有其他线程线程正在等待并希望进入相同的范围。 现在,其他线程是否会获得 CPU 时间?其他线程是否在线程调度中?我知道所有其他线程都处于等待
我正在尝试创建一个社交媒体应用程序。但它需要大约 300mb 内存。所以我的主页上有 5 个包含帖子的 fragment 。总体内存使用量为 250-300mb 然后为了测试,我禁用了这些 fragm
我有一个带有一些 TextFormField 的表单,我想扩展最后一个 TextFormField 以占据屏幕的其余部分。最后一个 TextFormField 可以有多行文本。 我没能做到这一点,并尝
我收到磁盘几乎已满的警告,所以我运行 DaisyDisk .. 显然 Xcode 占用了 15GB 的空间: http://imgur.com/a/cTIZZ iOS 设备支持为 12.3 GB: h
我正在使用 Xcode Playground 研究 Swift 内存布局,我创建了一个带有 bool、double 和 int32 的结构,如下所示。基于这种结构,MemoryLayout 的打印结果
一旦执行“self.navigationController pushviewcontroller:vc animated:YES”,我的 CPU 就会达到 100%。我在 Stack Overflo
警告:CPU 使用率达到 100%,请小心。 Link to the jsFiddle 编写此脚本是为了设计动态蛇梯板。每次刷新页面时,都会创建一个新板。大多数时候所有的背景图像都不会出现,CPU 使
我不知道为什么,但是MYSQL给CPU带来了很大的负载。我必须每秒多次更新数据库,并且用户群正在不断增长。 一开始还好,但是现在 CPU 负载每天都在增加 这是日志中的慢速查询: *Query_tim
我是一名优秀的程序员,十分优秀!