-
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
Task-3 #22
base: master
Are you sure you want to change the base?
Task-3 #22
Conversation
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.
Хорошая работа, спасибо!
По поводу вашего вопроса - все косяки, которые я закладывал, найдены и поправлены.
Если надо ещё ускорить - можно пагинацию приделать.
Service.delete_all | ||
Trip.delete_all | ||
ActiveRecord::Base.connection.execute("delete from buses_services;") | ||
ActiveRecord::Base.connection.reset_pk_sequence!("cities") |
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.
👍 плюсик за ресет sequence
app/services/import_data.rb
Outdated
private | ||
|
||
def parse_id(dict, hash_key) | ||
to_id = send(dict)[hash_key] |
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.
Странно, что вы передаёте символ и потом делаете send
Можно просто передавать сам хэш
to_id = parse_id(:cities, trip["to"]) | ||
bus = bus_number(trip["bus"]) | ||
|
||
# стримим подготовленный чанк данных в postgres |
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.
👍
<% 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.
Плюсик за рендеринг коллекции.
Многие просто удаляют паршлы и копипастят их контент в шаблон
app/views/trips/_trip.html.erb
Outdated
<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.
Полезность кэширования тут под вопросом.
На странице много трипов, и за каждым надо сходить в Redis.
Кажется, что рендерить их не особо медленнее, но чтобы сказать точно надо бенчмаркать.
</ul> | ||
<%= render "delimiter" %> | ||
<% end %> | ||
<%= render partial: "trip", collection: @trips, spacer_template: 'delimiter' %> |
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.
Плюсик за spacer_template
!
@@ -0,0 +1,5 @@ | |||
class IndexForeignKeysInBusesServices < ActiveRecord::Migration[5.2] | |||
def change | |||
add_index :buses_services, [:bus_id, :service_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.
В данном случае не важно, но на проде лучше всегда использовать concurrently
@@ -0,0 +1,38 @@ | |||
[ |
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.
👍
Задача 1
Задача 2
Пробовал профилировать всеми инструментами, что показывались на уроке.