-
Notifications
You must be signed in to change notification settings - Fork 3
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
[WIP] add presentations #1
base: master
Are you sure you want to change the base?
Conversation
Could you please reorder sections focusing on proper timers for implementations of |
} | ||
], | ||
"source": [ | ||
"for name in ['clock', 'monotonic', 'perf_counter', 'process_time', 'thread_time', 'time']:\n", |
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.
а как же _ns
версии?
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.
_ns версии не поддерживаются.
https://docs.python.org/3.7/library/time.html#time.get_clock_info
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"adjustable = True, если счётчик может быть изменён." |
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.
Я не думаю, что нам нужно сильно освещать эту часть, просто замечания о том, что некоторые счётчики можно менять будет достаточно. Впрочем можно (попробовать) показать на их примере немонотонность.
"loop = asyncio.new_event_loop()\n", | ||
"\n", | ||
"for i in range(5):\n", | ||
" await asyncio.sleep(1)\n", |
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.
имеет смысл показать несколько корутин, делающих asyncio.sleep()
.
можно также показать, что будет, если сделать time.sleep() а не asyncio.sleep()
в корутине
} | ||
}, | ||
"source": [ | ||
"В ведро фиксированного размера поступают запросы клиентов. Запрос отклоняется, если не помещается в ведро. Принятый запрос кладётся в ведро и передается на обработку в порядке очереди (FIFO). Ведро наполняется запросами, приходящими, вообще говоря, неравномерно по времени. Запросы достаются из ведра с фиксированной частотой." |
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.
Покажите, пожалуйста, что клиентов больше чем 1 и как это влияет на потребление памяти.
is it ready for review? |
No description provided.