autotuner 0.1.0 → 1.0.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.
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module GCTuner
4
- module Heuristics
5
- HEURISTICS = [
6
- Heuristic::SizePoolWarmup,
7
- ].freeze
8
-
9
- def heuristics
10
- @heuristics ||= enabled_heuristics.map(&:new)
11
- end
12
-
13
- def tuning_messages
14
- heuristics.map(&:tuning_message)
15
- end
16
-
17
- def debug_messages
18
- heuristics.map(&:debug_message)
19
- end
20
-
21
- private
22
-
23
- def enabled_heuristics
24
- HEURISTICS.dup.keep_if(&:enabled?)
25
- end
26
- end
27
- end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module GCTuner
4
- VERSION = "0.1.0"
5
- end
data/lib/gc_tuner.rb DELETED
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "gc_tuner/data_structure/data_points"
4
-
5
- require_relative "gc_tuner/heuristic/base"
6
- require_relative "gc_tuner/heuristic/size_pool_warmup"
7
-
8
- require_relative "gc_tuner/configuration"
9
- require_relative "gc_tuner/gc_context"
10
- require_relative "gc_tuner/heuristics"
11
- require_relative "gc_tuner/rack_plugin"
12
- require_relative "gc_tuner/request_collector"
13
- require_relative "gc_tuner/version"
14
-
15
- module GCTuner
16
- extend Configuration
17
- extend Heuristics
18
- end