-
Couldn't load subscription status.
- Fork 1.4k
Improvements to microsite documentation #633
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
Conversation
| Nearly all programmers will find the features of `ZIO` help them build scalable, performant, concurrent, and leak-free applications faster and with stronger correctness guarantees than legacy techniques allow. | ||
| # Creating ZIO Values | ||
|
|
||
| The simplest ZIO effects you can create model success and failure. These are covered in the [next session](success_failure.html). |
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.
Broken link here? Should link to creating_effects.md
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.
Fixed! π
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.
π
|
|
||
| ZIO's concurrency is built on _fibers_, which are lightweight "green threads" implemented by the ZIO runtime. | ||
|
|
||
| Unlike operating system threads, fibers consume almost no memory, have growable and shrinkable stacks, don'tt waste resources blocking, and will be garbage collected automatically if they are inactive and unreachable. |
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.
don'tt
It's not perfect, I'll do more later. π