-
Notifications
You must be signed in to change notification settings - Fork 377
/
slice-native-vs-before-native.rb
49 lines (42 loc) · 1.16 KB
/
slice-native-vs-before-native.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
require 'benchmark/ips'
HASH = {
title: "awesome",
description: "a description",
author: "styd",
published_at: Time.now
}
HASH.dup.each{ |k, v| HASH[:"other_#{k}"], HASH[:"more_#{k}"] = v, v }
# Native implementation since v2.5
#
def fastest
HASH.slice(*%i[title author other])
end
# @ixti's faster implementation than that of ActiveSupport below
#
# Source:
# https://github.com/JuanitoFatas/fast-ruby/pull/173#issuecomment-470554483
#
def faster
memo = {}
%i[title author other].each { |k| memo[k] = HASH[k] if HASH.key?(k) }
memo
end
# ActiveSupport implementation of `slice` when it's not defined.
#
# Source:
# https://github.com/rails/rails/blob/01ae39660243bc5f0a986e20f9c9bff312b1b5f8/activesupport/lib/active_support/core_ext/hash/slice.rb#L24
#
def fast
%i[title author other].each_with_object({}){ |k, h| h[k] = HASH[k] if HASH.key?(k) }
end
def slow
keys = %i[title author other]
HASH.select { |k, _| keys.include? k }
end
Benchmark.ips do |x|
x.report('Hash#native-slice ') { fastest }
x.report('Array#each ') { faster }
x.report('Array#each_w/_object') { fast }
x.report('Hash#select-include ') { slow }
x.compare!
end