frozen_record 0.25.4 → 0.26.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/main.yml +1 -1
- data/CHANGELOG.md +12 -0
- data/README.md +2 -2
- data/benchmark/querying +7 -0
- data/frozen_record.gemspec +0 -1
- data/lib/frozen_record/backends/json.rb +3 -3
- data/lib/frozen_record/backends/yaml.rb +6 -6
- data/lib/frozen_record/base.rb +28 -3
- data/lib/frozen_record/compact.rb +1 -1
- data/lib/frozen_record/minimal.rb +0 -2
- data/lib/frozen_record/scope.rb +7 -2
- data/lib/frozen_record/version.rb +1 -1
- data/spec/frozen_record_spec.rb +7 -0
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e4a597e4419873da69776c887c5ef35c812f785493cd9597d3d3ced891578ab
|
4
|
+
data.tar.gz: d46b86085ceeee261b39a281aab1c62a2551e872ad1f4696e8a7325b7cfa9a7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e68a5dfb1d888de4f6dc72bb42ffdc1c08af87229b7bd0dcf107d1da9b48ef5b948adea5652b132cb497a1a8c15b513aa7ba8beea7c863b06f19de14ae02865
|
7
|
+
data.tar.gz: f787b5072efd3997fb41942c1d9b6014ee872d6faec12a4c5a77ef489a7039ed980987bbf4102ed7d9c5cd2b296e49c1bd6a25f578559969d200d875d6cdf877
|
data/.github/workflows/main.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Unreleased
|
2
2
|
|
3
|
+
# v0.26.1
|
4
|
+
|
5
|
+
- Optimized single attribute lookup.
|
6
|
+
|
7
|
+
# v0.26.0
|
8
|
+
|
9
|
+
- Drop dependency on `dedup` gem.
|
10
|
+
|
11
|
+
# v0.25.5
|
12
|
+
|
13
|
+
- `FrozenRecord::Base#==` now returns `false` if the primary key is `nil` (to match the `ActiveRecord::Base` implementation)
|
14
|
+
|
3
15
|
# v0.25.4
|
4
16
|
|
5
17
|
- Minor Ruby 3.2 compatiblity fix (regarding `ruby2_keywords`).
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
[![Build Status](https://secure.travis-ci.org/byroot/frozen_record.svg)](http://travis-ci.org/byroot/frozen_record)
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/frozen_record.svg)](http://badge.fury.io/rb/frozen_record)
|
5
5
|
|
6
|
-
|
6
|
+
Active Record-like interface for **read only** access to static data files of reasonable size.
|
7
7
|
|
8
8
|
## Installation
|
9
9
|
|
@@ -156,7 +156,7 @@ The primary key isn't indexed by default.
|
|
156
156
|
|
157
157
|
## Limitations
|
158
158
|
|
159
|
-
Frozen Record is not meant to operate
|
159
|
+
Frozen Record is not meant to operate on large unindexed datasets.
|
160
160
|
|
161
161
|
To ensure that it doesn't happen by accident, you can set `FrozenRecord::Base.max_records_scan = 500` (or whatever limit makes sense to you), in your development and test environments.
|
162
162
|
This setting will cause Frozen Record to raise an error if it has to scan more than `max_records_scan` records. This property can also be set on a per model basis.
|
data/benchmark/querying
CHANGED
@@ -23,6 +23,13 @@ class LargeCountry < Country
|
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
+
LargeCountry.eager_load!
|
27
|
+
|
28
|
+
puts "=== unique index lookup ==="
|
29
|
+
Benchmark.ips do |x|
|
30
|
+
x.report('pk lookup') { LargeCountry.find_by(name: "Canada1") }
|
31
|
+
end
|
32
|
+
|
26
33
|
puts "=== simple scalar match ==="
|
27
34
|
Benchmark.ips do |x|
|
28
35
|
x.report('simple') { LargeCountry.nato.size }
|
data/frozen_record.gemspec
CHANGED
@@ -19,16 +19,16 @@ module FrozenRecord
|
|
19
19
|
|
20
20
|
if supports_freeze
|
21
21
|
def load(file_path)
|
22
|
-
JSON.load_file(file_path, freeze: true) ||
|
22
|
+
JSON.load_file(file_path, freeze: true) || [].freeze
|
23
23
|
end
|
24
24
|
else
|
25
25
|
def load(file_path)
|
26
|
-
|
26
|
+
JSON.load_file(file_path) || [].freeze
|
27
27
|
end
|
28
28
|
end
|
29
29
|
else
|
30
30
|
def load(file_path)
|
31
|
-
|
31
|
+
JSON.parse(File.read(file_path)) || [].freeze
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
@@ -56,27 +56,27 @@ module FrozenRecord
|
|
56
56
|
|
57
57
|
if YAML.respond_to?(:unsafe_load_file)
|
58
58
|
def load_file(path)
|
59
|
-
YAML.unsafe_load_file(path, freeze: true) ||
|
59
|
+
YAML.unsafe_load_file(path, freeze: true) || [].freeze
|
60
60
|
end
|
61
61
|
|
62
62
|
def load_string(yaml)
|
63
|
-
YAML.unsafe_load(yaml, freeze: true) ||
|
63
|
+
YAML.unsafe_load(yaml, freeze: true) || [].freeze
|
64
64
|
end
|
65
65
|
elsif supports_freeze
|
66
66
|
def load_file(path)
|
67
|
-
YAML.load_file(path, freeze: true) ||
|
67
|
+
YAML.load_file(path, freeze: true) || [].freeze
|
68
68
|
end
|
69
69
|
|
70
70
|
def load_string(yaml)
|
71
|
-
YAML.load(yaml, freeze: true) ||
|
71
|
+
YAML.load(yaml, freeze: true) || [].freeze
|
72
72
|
end
|
73
73
|
else
|
74
74
|
def load_file(path)
|
75
|
-
|
75
|
+
YAML.load_file(path) || [].freeze
|
76
76
|
end
|
77
77
|
|
78
78
|
def load_string(yaml)
|
79
|
-
|
79
|
+
YAML.load(yaml) || [].freeze
|
80
80
|
end
|
81
81
|
end
|
82
82
|
end
|
data/lib/frozen_record/base.rb
CHANGED
@@ -69,7 +69,7 @@ module FrozenRecord
|
|
69
69
|
alias_method :set_default_attributes, :default_attributes=
|
70
70
|
private :set_default_attributes
|
71
71
|
def default_attributes=(default_attributes)
|
72
|
-
set_default_attributes(
|
72
|
+
set_default_attributes(default_attributes.transform_keys(&:to_s))
|
73
73
|
end
|
74
74
|
|
75
75
|
alias_method :set_primary_key, :primary_key=
|
@@ -107,7 +107,7 @@ module FrozenRecord
|
|
107
107
|
store[:scope] = scope
|
108
108
|
end
|
109
109
|
|
110
|
-
delegate :each, :
|
110
|
+
delegate :each, :find_each, :where, :first, :first!, :last, :last!,
|
111
111
|
:pluck, :ids, :order, :limit, :offset, :minimum, :maximum, :average, :sum, :count,
|
112
112
|
to: :current_scope
|
113
113
|
|
@@ -123,6 +123,31 @@ module FrozenRecord
|
|
123
123
|
end
|
124
124
|
end
|
125
125
|
|
126
|
+
def find_by_id(id)
|
127
|
+
find_by(primary_key => id)
|
128
|
+
end
|
129
|
+
|
130
|
+
def find(id)
|
131
|
+
raise RecordNotFound, "Can't lookup record without ID" unless id
|
132
|
+
find_by(primary_key => id) or raise RecordNotFound, "Couldn't find a record with ID = #{id.inspect}"
|
133
|
+
end
|
134
|
+
|
135
|
+
def find_by(criterias)
|
136
|
+
if criterias.size == 1
|
137
|
+
criterias.each do |attribute, value|
|
138
|
+
attribute = attribute.to_s
|
139
|
+
if index = index_definitions[attribute]
|
140
|
+
return index.lookup(value).first
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
current_scope.find_by(criterias)
|
145
|
+
end
|
146
|
+
|
147
|
+
def find_by!(criterias)
|
148
|
+
find_by(criterias) or raise RecordNotFound, "No record matched"
|
149
|
+
end
|
150
|
+
|
126
151
|
def add_index(attribute, unique: false)
|
127
152
|
index = unique ? UniqueIndex.new(self, attribute) : Index.new(self, attribute)
|
128
153
|
self.index_definitions = index_definitions.merge(index.attribute => index).freeze
|
@@ -252,7 +277,7 @@ module FrozenRecord
|
|
252
277
|
alias_method :attribute, :[]
|
253
278
|
|
254
279
|
def ==(other)
|
255
|
-
super || other.is_a?(self.class) && other.id == id
|
280
|
+
super || other.is_a?(self.class) && !id.nil? && other.id == id
|
256
281
|
end
|
257
282
|
|
258
283
|
def persisted?
|
@@ -62,7 +62,7 @@ module FrozenRecord
|
|
62
62
|
|
63
63
|
def attributes=(attributes)
|
64
64
|
self.class.attributes.each do |attr|
|
65
|
-
instance_variable_set(self.class._attributes_cache[attr],
|
65
|
+
instance_variable_set(self.class._attributes_cache[attr], attributes[attr])
|
66
66
|
end
|
67
67
|
end
|
68
68
|
|
data/lib/frozen_record/scope.rb
CHANGED
@@ -34,12 +34,17 @@ module FrozenRecord
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def find_by_id(id)
|
37
|
-
|
37
|
+
find_by(@klass.primary_key => id)
|
38
38
|
end
|
39
39
|
|
40
40
|
def find(id)
|
41
41
|
raise RecordNotFound, "Can't lookup record without ID" unless id
|
42
|
-
|
42
|
+
|
43
|
+
scope = self
|
44
|
+
if @limit || @offset
|
45
|
+
scope = limit(nil).offset(nil)
|
46
|
+
end
|
47
|
+
scope.find_by_id(id) or raise RecordNotFound, "Couldn't find a record with ID = #{id.inspect}"
|
43
48
|
end
|
44
49
|
|
45
50
|
def find_by(criterias)
|
data/spec/frozen_record_spec.rb
CHANGED
@@ -149,6 +149,13 @@ RSpec.shared_examples 'main' do
|
|
149
149
|
expect(country).to be == second_country
|
150
150
|
end
|
151
151
|
|
152
|
+
it 'returns false if both instances are from the same class and their ids are nil' do
|
153
|
+
country = country_model.new(id: nil)
|
154
|
+
second_country = country_model.new(id: nil)
|
155
|
+
|
156
|
+
expect(country).to_not be == second_country
|
157
|
+
end
|
158
|
+
|
152
159
|
it 'returns false if both instances are not from the same class' do
|
153
160
|
country = country_model.first
|
154
161
|
car = car_model.new(id: country.id)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: frozen_record
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.26.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jean Boussier
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: dedup
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: rake
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -73,6 +59,7 @@ executables: []
|
|
73
59
|
extensions: []
|
74
60
|
extra_rdoc_files: []
|
75
61
|
files:
|
62
|
+
- ".github/dependabot.yml"
|
76
63
|
- ".github/workflows/main.yml"
|
77
64
|
- ".gitignore"
|
78
65
|
- ".rspec"
|
@@ -137,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
124
|
- !ruby/object:Gem::Version
|
138
125
|
version: '0'
|
139
126
|
requirements: []
|
140
|
-
rubygems_version: 3.
|
127
|
+
rubygems_version: 3.2.20
|
141
128
|
signing_key:
|
142
129
|
specification_version: 4
|
143
130
|
summary: ActiveRecord like interface to read only access and query static YAML files
|