Ilia
Ilia
Each time when `function` is converted to `StoredObject` and when it's converted back we call `string.dump` and `loadstring`. We think that it can be optimized by cache. This cache should...
It would be nice if effil will allow to set priority for new thread. It looks not so complicated to implement.
`lua_sethook` looks async safe. So all threads can be spawned without overhead. We'd only need a lock to make sure that the state is not lua_close'd.
It would be nice if I can write code like this: ```lua local channel = effil.channel() -- fill channel for value in channel:iterate() do print(value) end ```