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

ready hm-18 #32

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

ready hm-18 #32

wants to merge 2 commits into from

Conversation

isyufu
Copy link

@isyufu isyufu commented Mar 2, 2024

Код рабочий, но тесты не проходит. Надеюсь эта недоработка не повлияет на принятие решения.
Может быть не совсем верно. Есть что улучшить.
Например можно получение типов покемонов и самих покемонов параллельно сделать.

astynax added a commit that referenced this pull request Mar 5, 2024
(defn generate-pokemon-urls
([total] (generate-pokemon-urls total 20))
([total batch-size]
(loop [offset 0
Copy link
Contributor

Choose a reason for hiding this comment

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

я бы предложил тут сделать более функционально на range + map


(let [result (<!! (a/into [] out>))]
(close! in>)
(close! mdl>)
Copy link
Contributor

Choose a reason for hiding this comment

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

пайплайны сами закроют выходные каналы при закрытии (и исчерпании) входных, так что тут достаточно закрыть только in>

Copy link
Contributor

Choose a reason for hiding this comment

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

обращаю внимание, что onto-chan! сам закроет входной канал при исчерпании коллекции, так что тут дополнительно ничего делать не нужно

(defn pokemons-types [count lang]
(let [type-names-lang (translated-types lang)
in> (chan 20)
mdl> (chan count)
Copy link
Contributor

Choose a reason for hiding this comment

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

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

out> (chan count)
async-fn (fn [url out*]
(go
(let [arr (get-parse-xform url :results)]
Copy link
Contributor

Choose a reason for hiding this comment

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

блокирующие вызовы запросов быстро займут все ресурсы core async и несмотря на то, что это все еще будет работать быстрее, чем при синхронной обработке, тут есть что улучшить.

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