-
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
Task3 #4
Task3 #4
Conversation
<% services.each do |service| %> | ||
<%= render "service", service: service %> | ||
<% end %> | ||
<%= render partial: "service", collection: services %> |
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.
👍 Частенько просто удаляют partial
-ы и лепят всё в один файл
<li><%= "В пути: #{trip.duration_minutes / 60}ч. #{trip.duration_minutes % 60}мин." %></li> | ||
<li><%= "Цена: #{trip.price_cents / 100}р. #{trip.price_cents % 100}коп." %></li> | ||
<li><%= "Автобус: #{trip.bus.model} №#{trip.bus.number}" %></li> | ||
<% cache trip do %> |
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.
👍
# explain запросов и добавление индексов | ||
|
||
Изучив запросы к бд, я добавил несколько индексов, в том числе составной индекс для trips -> | ||
[:from_id, :to_id, :start_time], что значительно ускорило выборку данных из базы. |
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.
👍 Идеально было бы ещё привести планы запросов до и после добавления индекса
# Итог | ||
|
||
После всех оптимизаций удалось добиться открытия заполненной из large.json страницы менее чем за | ||
0.5 секунды, по сравнению с первонатальным кодом страница ускорилась примерно в 150 раз |
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.
👍
def change | ||
add_index(:buses_services, :bus_id) | ||
add_index(:cities, :name) | ||
add_index(:trips, :from_id) |
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.
Этот индекс получается лишний, если есть составной на [:from_id, :to_id, :start_time]
@@ -0,0 +1,96 @@ | |||
# frozen_string_literal: true | |||
|
|||
class JsonFileToDbProcessor |
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.
👍 Плюсик за вынос в отдельный файл
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.
👍 nice work! try a bonus sometime!
No description provided.