<FromGitter>
<drujensen> aah, yes. And the property setters not being called from initializer bug.
<FromGitter>
<OpakAlex> @drujensen i will check granite, i think N+1 (includes) will be interesting todo
<FromGitter>
<drujensen> Yes, but very challenging. You will need to combine the select of two tables into a single query and then load both the parent and children objects from the results.
<FromGitter>
<OpakAlex> But why single query, in normal if we do: β categories = Category.includes(:posts).where(active: true) β categories.each {|category| category.posts.map(&:id)} β This will create 2 sql queries, one for categories table, and one for posts with IN (?). Same for nested will be. no? [https://gitter.im/amberframework/amber?at=5edf108989941d051a50c42a]
<FromGitter>
... compile `puts "hello"`. I looked at Rust and Dart because they are both directly supported on ARM by a binary tooling distribution but the two web application frameworks I looked at are nowhere near the ease of development that Rails and Amber provide out of the box. I suspect support for ARM will come to Crystal long before ... [https://gitter.im/amberframework/amber?at=5edf57e37a7f8d2d6323a544]
<FromGitter>
<drujensen> @OpakAlex that should work as well
<FromGitter>
<drujensen> @damianham sorry to hear that. I enjoyed using crystal on RPi and agree that its way simpler than Rust and Go. Havenβt looked at Dart much yet.
<FromGitter>
<damianham> @drujensen I use Dart to develop a mobile app with Flutter and for that it is really excellent and it's all functional programming. My mobile app does a load of stream processing and there is great support for streams in Dart.
<FromGitter>
<drujensen> π
renich has joined #amber
renich has quit [Client Quit]
renich has joined #amber
renich has quit [Ping timeout: 256 seconds]
renich has joined #amber
renich has quit [Quit: renich]
renich has joined #amber
<FromGitter>
<waghanza> π `crystal` *0.35* is out π
<FromGitter>
<waghanza> and `dart` supports aot compilation
<FromGitter>
<drujensen> Excellent. I will work on a release of Amber. Lots of breaking changes coming.
<FromGitter>
<drujensen> @waghanza looks like you maintain those benchmarks. You learn tons about other languages doing that. :-)
<FromGitter>
<eliasjpr> Yeah lots of breaking changes. We are going to need some help from the community
<FromGitter>
<eliasjpr> @damianham in regards to Nested params. I completed this shards the other night https://github.com/eliasjpr/schema that should help on that front.