Skip to content
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

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open

Add case study #134

wants to merge 25 commits into from

Conversation

peresvetjke
Copy link

No description provided.

Copy link
Collaborator

@spajic spajic left a 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 раза быстрее
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

в 2 раза быстрее конечно не всегда получается


- как вы решили её оптимизировать

Во-первых, мы будем выбирать сессии пользователя не по каждому пользователю снова и снова - а пробежимся с этой целью по сессиям только один раз, при этом раскидывая сессии по пользователям.
Copy link
Collaborator

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
Copy link
Collaborator

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 остается одним из лидеров.
Прежде чем приступать к оптимизации, попробуем выделить фрагменты программы в отдельные методы, чтобы было удобнее профилировать.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

да, просто each мало о чём говорит, легко свалиться в угадывание, лучше потратить время чтобы уточнить откуда именно идёт большинство вызовов


- как вы решили её оптимизировать

Осуществлять поиск кол-ва никальных браузеров с помощью uniq
Copy link
Collaborator

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` кажется избыточным убрали (имеющийся тест проходит).
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 тесты рулят


- как изменился отчёт профилировщика - исправленная проблема перестала быть главной точкой роста?

`merge` ушел из отчета. Ура! теперь мы попадаем в бюджет.
Copy link
Collaborator

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
Copy link
Collaborator

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
Copy link
Collaborator

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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Особо смысла нет, так как программа уже закрывается всё равно

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants