Skip to content
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

Closed
wants to merge 8 commits into from
Closed

Task3 #4

wants to merge 8 commits into from

Conversation

ineedjet
Copy link

No description provided.

<% services.each do |service| %>
<%= render "service", service: service %>
<% end %>
<%= render partial: "service", collection: services %>
Copy link
Collaborator

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 %>
Copy link
Collaborator

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], что значительно ускорило выборку данных из базы.
Copy link
Collaborator

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 раз
Copy link
Collaborator

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)
Copy link
Collaborator

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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Плюсик за вынос в отдельный файл

Copy link
Collaborator

@spajic spajic left a 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!

@vkurennov vkurennov closed this Jan 24, 2020
otmosina added a commit to otmosina/rails-optimization-task3 that referenced this pull request May 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants