-
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
Add case study #134
base: master
Are you sure you want to change the base?
Add case study #134
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.
Nice work 👍
|
||
Вот как я построил `feedback_loop`: | ||
- вношу изменение | ||
- выполняю тест который проверяет, стала ли программа в 2 раза быстрее |
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 раза быстрее конечно не всегда получается
|
||
- как вы решили её оптимизировать | ||
|
||
Во-первых, мы будем выбирать сессии пользователя не по каждому пользователю снова и снова - а пробежимся с этой целью по сессиям только один раз, при этом раскидывая сессии по пользователям. |
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.
тем самым делается самая главная оптимизация, а именно сложность снижается с O(N^2) до O(N)
|
||
- как изменилась метрика | ||
|
||
2_800ms -> 480ms |
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.
тут хорошо бы увеличить объём данных, чтобы программа успевала поработать секунд 5
- какой отчёт показал главную точку роста | ||
|
||
Смотрим flat + graph. Array#each остается одним из лидеров. | ||
Прежде чем приступать к оптимизации, попробуем выделить фрагменты программы в отдельные методы, чтобы было удобнее профилировать. |
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.
👍
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.
да, просто each мало о чём говорит, легко свалиться в угадывание, лучше потратить время чтобы уточнить откуда именно идёт большинство вызовов
|
||
- как вы решили её оптимизировать | ||
|
||
Осуществлять поиск кол-ва никальных браузеров с помощью uniq |
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.
уникальные браузеры тут удобно и эффективно через Set собирать
``` | ||
- как вы решили её оптимизировать | ||
|
||
При формировании 'dates' использование `Date.parse` (дорогого) с последующим переводом в `iso8601` кажется избыточным убрали (имеющийся тест проходит). |
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.
👍 тесты рулят
|
||
- как изменился отчёт профилировщика - исправленная проблема перестала быть главной точкой роста? | ||
|
||
`merge` ушел из отчета. Ура! теперь мы попадаем в бюджет. |
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.
👍 💪
expect { work(file_path) }.to perform_under(ms).ms.warmup(warmup_seconds).times.sample(10).times | ||
end | ||
|
||
it 'is trying to be better ' 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.
найс
|
||
report['uniqueBrowsersCount'] = uniqueBrowsers.count | ||
report['totalSessions'] = users.map(&:sessions_count).sum |
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.
map тут создаст лишний массив, лучше бы без этого обойтись
|
||
File.write('result.json', "#{report.to_json}\n") | ||
ensure | ||
GC.enable |
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.