-
Notifications
You must be signed in to change notification settings - Fork 177
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
Optimize task (V. Yashin) #148
base: master
Are you sure you want to change the base?
Optimize task (V. Yashin) #148
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.
✅👍
|
||
Вот как я построил `feedback_loop`: | ||
|
||
Встроил в программу progressbar для возможности визуального контроля за прогрессом выполнения |
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.
Лайк, но надо иметь в виду, что наличие прогресс-бара, особенно с большим кол-вом инкрементов может замедлять работу, поэтому именно делать замеры (бенчмаркать) лучше без него
Зафиксировал время выполнения исходной программы на файле из 20 000 строк (около 3.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.
👍 да, хорошо давать программе "покрутиться" в основном цикле хотя бы несколько секунд для того чтобы собрать релевантные данные для профилировщика и избежать излишнего влияния случайных погрешностей
|
||
### Находка №2 | ||
|
||
Так как время выполнения программы значительно уменьшилось на выбранном объёме данных, решил его увеличить до 100 000 строк. |
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.
👍
|
||
users = {} | ||
|
||
unique_browsers = Set[] |
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 to_h | ||
return @to_h if defined?(@_to_h) |
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.
а где @to_h = result? вообще это излишне мне кажется тут
No description provided.