Hacker News new | ask | show | jobs
by aczerepinski 2020 days ago
LiveView is awesome - I'd be pleasantly surprised if Rails were able to pull off something that good with Ruby's more limited capacity for concurrency.
2 comments

Ruby 3 is putting a lot of emphasis on concurrency with the new (experimental) Ractor Actor model [1] and the Fiber Scheduler [2]. Concurrency in Ruby is getting a lot better.

1: https://github.com/ruby/ruby/blob/master/doc/ractor.md

2: https://bugs.ruby-lang.org/issues/16786

We actually built something inspired by LiveView, it's called motion!

https://github.com/unabridged/motion

Motion has been on my to-do list for way too long, I should spend some time with it this weekend.