<frojnd>
I'm inside src/routes/api/v1/main.cr and inside get "/" do render "src/views/hello.ecr", "src/views/layouts/layout.ecr" end I get: Error: macro 'render' must be defined before this point but is defined later
<frojnd>
Do I have to import smth?
notzmv has quit [Read error: Connection reset by peer]
<FromGitter>
<zblesk:zble.sk> What is the current state of multiprocessing in Crystal? ⏎ Judging by the docs and some (old) blog posts, it seems to me that there are fibers, but not actual threads (or processes) running in parallel. ⏎ Is that still true?Are there any planned changes?
<FromGitter>
<moe:busyloop.net> yes, multi-threading is in development, but i don't know what the latest status is (i think it's still in "preview", you can use `preview_mt` flag to enable it)
<yxhuvud>
It is there, but it has some limitations. There is for example no work stealing, so if some cpu gets very busy fibers assigned to that thread will be stuck waiting even if other threads are not doing anything