uringmachine 0.22.1 → 0.23.0
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/CHANGELOG.md +12 -2
- data/TODO.md +24 -138
- data/benchmark/README.md +1 -1
- data/benchmark/bm_io_pipe.rb +14 -0
- data/benchmark/common.rb +5 -0
- data/benchmark/read_each.rb +83 -0
- data/benchmark/send.rb +31 -36
- data/ext/um/extconf.rb +7 -1
- data/ext/um/um.c +131 -8
- data/ext/um/um.h +8 -0
- data/ext/um/um_class.c +34 -0
- data/ext/um/um_const.c +0 -2
- data/ext/um/um_op.c +20 -2
- data/ext/um/um_utils.c +27 -0
- data/grant-2025/journal.md +2 -2
- data/grant-2025/tasks.md +7 -12
- data/lib/uringmachine/version.rb +1 -1
- data/test/helper.rb +5 -4
- data/test/test_fiber_scheduler.rb +1 -17
- data/test/test_um.rb +299 -62
- data/vendor/liburing/configure +4 -2
- data/vendor/liburing/src/Makefile +1 -0
- data/vendor/liburing/test/min-timeout-wait.c +57 -2
- data/vendor/liburing/test/min-timeout.c +22 -0
- metadata +4 -3
- /data/benchmark/{chart.png → chart_all.png} +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uringmachine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sharon Rosner
|
|
@@ -105,12 +105,13 @@ files:
|
|
|
105
105
|
- benchmark/bm_mutex_io.rb
|
|
106
106
|
- benchmark/bm_pg_client.rb
|
|
107
107
|
- benchmark/bm_queue.rb
|
|
108
|
-
- benchmark/
|
|
108
|
+
- benchmark/chart_all.png
|
|
109
109
|
- benchmark/common.rb
|
|
110
110
|
- benchmark/dns_client.rb
|
|
111
111
|
- benchmark/http_parse.rb
|
|
112
112
|
- benchmark/mutex.rb
|
|
113
113
|
- benchmark/mutex_single.rb
|
|
114
|
+
- benchmark/read_each.rb
|
|
114
115
|
- benchmark/run_bm.rb
|
|
115
116
|
- benchmark/send.rb
|
|
116
117
|
- benchmark/snooze.rb
|
|
@@ -719,7 +720,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
719
720
|
- !ruby/object:Gem::Version
|
|
720
721
|
version: '0'
|
|
721
722
|
requirements: []
|
|
722
|
-
rubygems_version: 4.0.
|
|
723
|
+
rubygems_version: 4.0.1
|
|
723
724
|
specification_version: 4
|
|
724
725
|
summary: A lean, mean io_uring machine
|
|
725
726
|
test_files: []
|
|
File without changes
|