-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#3] Optimization of trips import and trips view #12
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/tmp | ||
/log | ||
/public | ||
.byebug_history |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--require spec_helper |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require: | ||
- rubocop-performance | ||
- rubocop-rspec | ||
- standard/cop/semantic_blocks | ||
|
||
inherit_mode: | ||
merge: | ||
- Exclude | ||
|
||
inherit_gem: | ||
standard: config/base.yml | ||
|
||
AllCops: | ||
Exclude: | ||
- 'bin/**' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,44 @@ | ||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '2.6.3' | ||
ruby "2.6.3" | ||
|
||
gem 'rails', '~> 5.2.3' | ||
gem 'pg', '>= 0.18', '< 2.0' | ||
gem 'puma', '~> 3.11' | ||
gem 'bootsnap', '>= 1.1.0', require: false | ||
gem "rails", "~> 5.2.3" | ||
gem "pg", ">= 0.18", "< 2.0" | ||
gem "puma", "~> 3.11" | ||
gem "bootsnap", ">= 1.1.0", require: false | ||
gem "activerecord-import" | ||
gem "json-streamer" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
gem "dry-container" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ого |
||
gem "redis" | ||
|
||
group :development, :test do | ||
gem "rubocop" | ||
gem "rubocop-performance" | ||
gem "rubocop-rspec" | ||
gem "standard", "0.1.7" | ||
|
||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
gem "byebug", platforms: [:mri, :mingw, :x64_mingw] | ||
gem "ruby-prof" | ||
gem "meta_request" | ||
gem "rails_panel" | ||
|
||
gem "factory_bot_rails" | ||
gem "database_cleaner" | ||
gem "rspec-rails" | ||
gem "rspec-benchmark" | ||
end | ||
|
||
group :development do | ||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code. | ||
gem 'web-console', '>= 3.3.0' | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
gem "web-console", ">= 3.3.0" | ||
gem "listen", ">= 3.0.5", "< 3.2" | ||
end | ||
|
||
group :test do | ||
gem "capybara" | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require_relative 'config/application' | ||
require_relative "config/application" | ||
|
||
Rails.application.load_tasks |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class TripsContainer | ||
extend Dry::Container::Mixin | ||
|
||
register("import") do | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wow, такого в этом ДЗ ещё никто не делал |
||
Trips::Import.new( | ||
Utils::TruncateTables.new, | ||
BusServices::Seed.new | ||
) | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,34 @@ | ||
class TripsController < ApplicationController | ||
helper_method :index_html | ||
|
||
def index | ||
@from = City.find_by_name!(params[:from]) | ||
@to = City.find_by_name!(params[:to]) | ||
@trips = Trip.where(from: @from, to: @to).order(:start_time) | ||
if index_cache.nil? | ||
@from = City.find_by_name!(params[:from]) | ||
@to = City.find_by_name!(params[:to]) | ||
@trips = Trip.where(from: @from, to: @to).includes(bus: :services).order(:start_time) | ||
|
||
prepare_index_cache | ||
end | ||
end | ||
|
||
private | ||
|
||
def index_cache | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Лучше бы вынести логику кэширования в QueryObject, не засорять ей контроллер. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Тут согласен, можно рефачить, но момент выполнения задания не хотел добавлять новых абстракций. |
||
@index_cache ||= Redis.current.get("TripsController#index_#{params[:from].downcase}_#{params[:to].downcase}") | ||
end | ||
|
||
def index_html | ||
@index_html ||= | ||
index_cache || render_to_string( | ||
"trips/_index", | ||
locals: {:@from => @from, :@to => @to, :@trips => @trips} | ||
) | ||
end | ||
|
||
def prepare_index_cache | ||
Redis.current.set( | ||
"TripsController#index_#{params[:from].downcase}_#{params[:to].downcase}", | ||
index_html, ex: 1.minutes | ||
) | ||
end | ||
end |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module BusServices | ||
class Seed | ||
def call | ||
columns = [:id, :name] | ||
import_data = Service::SERVICES.each_with_index.map { |v, i| | ||
[i + 1, v] | ||
} | ||
|
||
Service.import(columns, import_data) | ||
|
||
# Result of insertion in format: | ||
# { | ||
# "WiFi" => 1, | ||
# "Туалет" => 2, | ||
# "Работающий туалет" => 3, | ||
# "Ремни безопасности" => 4, | ||
# "Кондиционер общий" => 5, | ||
# "Кондиционер Индивидуальный" => 6, | ||
# "Телевизор общий" => 7, | ||
# "Телевизор индивидуальный" => 8, | ||
# "Стюардесса" => 9, | ||
# "Можно не печатать билет" => 10 | ||
# } | ||
Hash[import_data.map { |id, value| [value, id] }] | ||
end | ||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 плюсик за rubocop-performance!