-
Notifications
You must be signed in to change notification settings - Fork 103
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
Homework 3 (Lutovinova) #102
base: master
Are you sure you want to change the base?
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.
✅
<% 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.
Можно использовать рендеринг коллекций.
Там не такая просадка производительности по сравнению с рендерингом паршлов в цикле
И даже можно параметром задать шаблон разделителя: https://guides.rubyonrails.org/layouts_and_rendering.html#spacer-templates
- Время выполнения (fixtures/1M.json): 137.6 сек | ||
- Потребляемая память (fixtures/1M.json): 1895 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.
👍
|
||
### Итоги | ||
|
||
Очень понравилось использовать 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.
👍
Очень понравилось использовать pgHero, действительно удобный и визуально приятный инструмент. | ||
С bullet и rack-mini-profiler немного уже работала, поэтому они остаются полезными) | ||
|
||
P.S Прошу прощения за такую задержку с выполнением дз. Постараюсь наверстать все пропущенное до конца курса. |
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.
Претензий нет, задания чем дальше, тем проще, желаю удачи 👍
end | ||
|
||
def find_city_id(name) | ||
@cities[name] ||= ActiveRecord::Base.connection.execute("insert into cities (name) values ('#{name}') ON CONFLICT DO NOTHING RETURNING id").first['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.
как-то странно. кажется лучше это просто в виде Hash сделать, чтобы не делать лишних запросов в БД
) | ||
end | ||
end | ||
Operations::Import.new.work(args.file_name) |
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.
👍
No description provided.