# ractor - Rust Actor 프레임워크

> Clean Markdown view of GeekNews topic #8509. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=8509](https://news.hada.io/topic?id=8509)
- GeekNews Markdown: [https://news.hada.io/topic/8509.md](https://news.hada.io/topic/8509.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2023-02-18T10:37:01+09:00
- Updated: 2023-02-18T10:37:01+09:00
- Original source: [github.com/slawlor](https://github.com/slawlor/ractor)
- Points: 12
- Comments: 2

## Topic Body

- Erlang의 gen-server 에서 영감을 받은 순수 Rust 기반 Actor 프레임워크   
- unsafe를 사용하지 않음   
- 곧 같이 공개될 ractor_cluster 라이브러리로 분산 환경에서도 적용 가능   
- Actix, riker, Tokio의 actor 와 달리 Erlang 의 동작방식을 가능한 비슷하게 구현   
- 별도의 런타임/시스템이 없으며, Actor들은 독립적으로 실행 가능

## Comments



### Comment 14870

- Author: annyeong
- Created: 2023-02-18T12:46:18+09:00
- Points: 1

이런 루비의 액터 라이브러리와 이름이 같군요  
  
https://github.com/ruby/ruby/blob/master/doc/ractor.md

### Comment 14869

- Author: nallwhy
- Created: 2023-02-18T10:53:13+09:00
- Points: 1

erlang/elixir 에게는 preemptive scheduling 만 남게될 것인가
