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

Task-3 #22

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Task-3 #22

wants to merge 5 commits into from

Conversation

badimalex
Copy link

@badimalex badimalex commented Feb 24, 2020

Задача 1

  • добавил тесты чтобы ничего не поломать.
  • файл large.json загружается за: 20.81 ms

Задача 2
Пробовал профилировать всеми инструментами, что показывались на уроке.

  • пофиксил n+1
  • добавил partials, collection
  • добавил cache trip
  • добавил составные индексы

@badimalex badimalex changed the title Task 3 Task-3 Feb 25, 2020
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.

Хорошая работа, спасибо!

По поводу вашего вопроса - все косяки, которые я закладывал, найдены и поправлены.
Если надо ещё ускорить - можно пагинацию приделать.

Service.delete_all
Trip.delete_all
ActiveRecord::Base.connection.execute("delete from buses_services;")
ActiveRecord::Base.connection.reset_pk_sequence!("cities")
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍 плюсик за ресет sequence

private

def parse_id(dict, hash_key)
to_id = send(dict)[hash_key]
Copy link
Collaborator

Choose a reason for hiding this comment

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

Странно, что вы передаёте символ и потом делаете send
Можно просто передавать сам хэш

to_id = parse_id(:cities, trip["to"])
bus = bus_number(trip["bus"])

# стримим подготовленный чанк данных в postgres
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

<% 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.

Плюсик за рендеринг коллекции.
Многие просто удаляют паршлы и копипастят их контент в шаблон

<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.

Полезность кэширования тут под вопросом.
На странице много трипов, и за каждым надо сходить в Redis.
Кажется, что рендерить их не особо медленнее, но чтобы сказать точно надо бенчмаркать.

</ul>
<%= render "delimiter" %>
<% end %>
<%= render partial: "trip", collection: @trips, spacer_template: 'delimiter' %>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Плюсик за spacer_template!

@@ -0,0 +1,5 @@
class IndexForeignKeysInBusesServices < ActiveRecord::Migration[5.2]
def change
add_index :buses_services, [:bus_id, :service_id]
Copy link
Collaborator

Choose a reason for hiding this comment

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

В данном случае не важно, но на проде лучше всегда использовать concurrently

@@ -0,0 +1,38 @@
[
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

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.

2 participants