Skip to content

N20: hecs #569

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

Merged
merged 2 commits into from
Apr 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions content/posts/newsletter-020/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,21 @@ _Discussions: [/r/rust][planck_reddit], Discord: jojolepro#8057_
[planck_patreon]: https://patreon.com/jojolepro
[planck_reddit]: https://www.reddit.com/r/rust/comments/m73ema/yet_another_ecs_library_except_much_safer/

### [hecs]

[hecs] is a fast, lightweight, and unopinionated archetypal ECS library.

Version 0.5 introduces a column-major serialization mode. This imitates the
in-memory data layout, enabling higher performance than the already-fast
row-major serialization mode. Because columnar layout places similar data
nearby, it also improves the effectiveness of compression.

Other changes include major optimizations to spawning entities and
adding/removing components, inspired by the archetype graph model recently
adopted by bevy.

[hecs]: https://github.com/Ralith/hecs

### [Quinn]

[Quinn] is an async-friendly implementation of the state-of-the-art QUIC
Expand Down