-
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
home 3 #118
base: master
Are you sure you want to change the base?
home 3 #118
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.
👍
@@ -9,6 +9,15 @@ gem 'puma' | |||
gem 'listen' | |||
gem 'bootsnap' | |||
gem 'rack-mini-profiler' | |||
gem 'activerecord-import' | |||
gem 'pghero' |
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.
<3
<%= render "delimiter" %> | ||
<% end %> | ||
|
||
<%= render partial: "trip", collection: @trips %> |
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.
👍 👍
<% if trip.bus.services.present? %> | ||
<li>Сервисы в автобусе:</li> | ||
<ul> | ||
<%= render partial: "service", collection: trip.bus.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.
👍
<%= render "services", services: trip.bus.services %> | ||
<% end %> | ||
</ul> | ||
<%= render "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.
кажется делимитер потерялся
его тоже можно параметров в render collection задать, https://guides.rubyonrails.org/layouts_and_rendering.html#spacer-templates
|
||
|
||
### Ваша находка | ||
- запустил импорт exmaple.json файла и начал смотреть логи |
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.
как говорит Nate Berkopec, если бы все смотрели логи, у меня бы не было работы
+ так же пришлось для удобсва создать можель на связь BusesService | ||
+ все объекты сохранял сразу в переменную и hash | ||
``` | ||
to = cities[trip['to']] ||= City.new(name: trip['to']) |
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.
👍
|
||
## Результаты | ||
- В результате проделанной оптимизации наконец удалось обработать файл с данными и уложиться в поставленные нами метрики. | ||
- Удалось улучшить отрисовку страницы расписаний с 11.3с до 0.3с. |
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.
0,3 или 3?
SELECT "trips".* FROM "trips" WHERE "trips"."from_id" = $1 AND "trips"."to_id" = $2 ORDER BY "trips"."start_time" ASC; | ||
``` | ||
2) добавил индекс на фильтруемые данные сразу отсортированные | ||
`add_index :trips, %i[from_id to_id start_time], order: {start_time: :asc}, algorithm: :concurrently` |
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.
я бы start_time не стал в этот составной индекс добавлять
[from_id, to_id] можно, а start_time лучше отдельно
``` | ||
|
||
но так же прибавил в памяти, для нас пока не влияет но надо учитывать index_trips_on_from_id_and_to_id_and_start_time 2.19 MB. | ||
Выйгрыш по скорости не такой большой |
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.
в данном случае маленькая изначально доля уходит на выполнение этого SQL-запроса, поэтому выигрыша большого не может быть
но если бы мы заходили с точки зрения оптимизации БД, то там бы это очень помогло
No description provided.