File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11require "active_support/core_ext/integer/time"
22
33Rails . application . configure do
4-
5- gem "solid_queue" , require : false
64 # Settings specified here will take precedence over those in config/application.rb.
75
86 # Code is not reloaded between requests.
4543 # Don't log any deprecations.
4644 config . active_support . report_deprecations = false
4745
48- # Replace the default in-process memory cache store with a durable alternative.
49- config . cache_store = :solid_cache_store
46+ # =====================================
47+ # [Cache / Job queue 설정]
48+ # =====================================
49+
50+ # ✅ 캐시 스토어를 memory_store 로 변경
51+ config . cache_store = :memory_store
5052
51- # Replace the default in-process and non-durable queuing backend for Active Job.
53+ # ✅ solid_queue 관련 설정 완전 제거
5254 # config.active_job.queue_adapter = :solid_queue
5355 # config.solid_queue.connects_to = { database: { writing: :queue } }
5456
8688 #
8789 # Skip DNS rebinding protection for the default health check endpoint.
8890 # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
89- config . active_record . dump_schema_after_migration = false
9091
9192 # ================================
9293 # [gRPC 관련 파일 autoload 제외 설정]
You can’t perform that action at this time.
0 commit comments