rails_benchmark_suite 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +17 -16
- data/lib/rails_benchmark_suite/version.rb +1 -2
- data/lib/rails_benchmark_suite.rb +6 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3b1ca672519dfe2c0b1b8a7bc9955c388f88a952be61d6c662714fd91982798
|
|
4
|
+
data.tar.gz: 475b0ea6cba1b90af9991553cdc4af9622a6543f9f1f9129a1bd57b3502550dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2dc117883323f4a6a356ec9a21e5e7e6a0a7ceef15d3ef7883199b9c02d06ae0b827bbc215420c1c70e4377c5387eaff9e515d0f78a49b4985d659484a886afd
|
|
7
|
+
data.tar.gz: d0e3f85050d98e244c0a2f3c6dc525ff467fda377973233823f0b068ab7c7b328d3069e3363bef96e92bab535e8d9d4247cb8acd5488271c92b4bad69366f2d2
|
data/Gemfile.lock
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
rails_benchmark_suite (0.2.
|
|
5
|
-
actionview
|
|
6
|
-
activerecord
|
|
7
|
-
activestorage
|
|
8
|
-
benchmark-ips
|
|
9
|
-
concurrent-ruby
|
|
10
|
-
get_process_mem
|
|
11
|
-
image_processing
|
|
12
|
-
sqlite3
|
|
4
|
+
rails_benchmark_suite (0.2.2)
|
|
5
|
+
actionview (~> 8.1)
|
|
6
|
+
activerecord (~> 8.1)
|
|
7
|
+
activestorage (~> 8.1)
|
|
8
|
+
benchmark-ips (~> 2.14)
|
|
9
|
+
concurrent-ruby (~> 1.3)
|
|
10
|
+
get_process_mem (~> 1.0)
|
|
11
|
+
image_processing (~> 1.14)
|
|
12
|
+
sqlite3 (~> 2.8)
|
|
13
13
|
|
|
14
14
|
GEM
|
|
15
15
|
remote: https://rubygems.org/
|
|
@@ -96,8 +96,7 @@ GEM
|
|
|
96
96
|
mini_magick (5.3.1)
|
|
97
97
|
logger
|
|
98
98
|
mini_portile2 (2.8.9)
|
|
99
|
-
minitest (
|
|
100
|
-
prism (~> 1.5)
|
|
99
|
+
minitest (5.27.0)
|
|
101
100
|
nokogiri (1.19.0)
|
|
102
101
|
mini_portile2 (~> 2.8.2)
|
|
103
102
|
racc (~> 1.4)
|
|
@@ -117,7 +116,6 @@ GEM
|
|
|
117
116
|
racc (~> 1.4)
|
|
118
117
|
nokogiri (1.19.0-x86_64-linux-musl)
|
|
119
118
|
racc (~> 1.4)
|
|
120
|
-
prism (1.7.0)
|
|
121
119
|
racc (1.8.1)
|
|
122
120
|
rack (3.2.4)
|
|
123
121
|
rack-session (2.1.1)
|
|
@@ -166,10 +164,13 @@ PLATFORMS
|
|
|
166
164
|
x86_64-linux-musl
|
|
167
165
|
|
|
168
166
|
DEPENDENCIES
|
|
169
|
-
bundler
|
|
170
|
-
minitest
|
|
167
|
+
bundler (~> 2.5)
|
|
168
|
+
minitest (~> 5.0)
|
|
171
169
|
rails_benchmark_suite!
|
|
172
|
-
rake
|
|
170
|
+
rake (~> 13.0)
|
|
171
|
+
|
|
172
|
+
RUBY VERSION
|
|
173
|
+
ruby 3.4.1p0
|
|
173
174
|
|
|
174
175
|
BUNDLED WITH
|
|
175
|
-
2.
|
|
176
|
+
2.6.2
|
|
@@ -26,6 +26,12 @@ module RailsBenchmarkSuite
|
|
|
26
26
|
timeout: 10000
|
|
27
27
|
)
|
|
28
28
|
|
|
29
|
+
# SQLite Performance Tuning for multi-threaded benchmarks
|
|
30
|
+
db = ActiveRecord::Base.connection.raw_connection
|
|
31
|
+
db.execute("PRAGMA journal_mode = WAL") # Write-Ahead Logging
|
|
32
|
+
db.execute("PRAGMA synchronous = NORMAL") # Faster writes
|
|
33
|
+
db.execute("PRAGMA busy_timeout = 5000") # Wait for lock instead of crashing
|
|
34
|
+
|
|
29
35
|
# Load Schema
|
|
30
36
|
RailsBenchmarkSuite::Schema.load
|
|
31
37
|
|
metadata
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_benchmark_suite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RailsBenchmarkSuite Contributors
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
11
|
date: 2026-01-02 00:00:00.000000000 Z
|
|
@@ -203,6 +204,7 @@ metadata:
|
|
|
203
204
|
source_code_uri: https://github.com/overnet/rails_benchmark_suite
|
|
204
205
|
bug_tracker_uri: https://github.com/overnet/rails_benchmark_suite/issues
|
|
205
206
|
changelog_uri: https://github.com/overnet/rails_benchmark_suite/blob/main/CHANGELOG.md
|
|
207
|
+
post_install_message:
|
|
206
208
|
rdoc_options: []
|
|
207
209
|
require_paths:
|
|
208
210
|
- lib
|
|
@@ -217,7 +219,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
219
|
- !ruby/object:Gem::Version
|
|
218
220
|
version: '0'
|
|
219
221
|
requirements: []
|
|
220
|
-
rubygems_version: 3.
|
|
222
|
+
rubygems_version: 3.5.22
|
|
223
|
+
signing_key:
|
|
221
224
|
specification_version: 4
|
|
222
225
|
summary: Rails-style functionality & performance benchmark tool
|
|
223
226
|
test_files: []
|