-
In proped, I need to open a file dialog and keep redrawing the host program. As far as I know this isn't possible with fibers. Would it be possible to add a new function that would run the fiber in a …
-
The old prestretch without including fibers, like it's on main right now, has a different length than the new prestretch that includes the fibers on the bug-prestretch branch. The old one has an incre…
-
From https://github.com/microsoft/pxt-microbit/issues/2709
The following program blinks nicely until A is pressed. Then the release_fiber() seems to exit.
Joe, this is blocking on MakeCode side.…
-
Hi,
While working on the `torrent` shard, I came across the need to tell fibers to stop running forever regularly. Often fixed through other means, like a `running` bool, I came across the followin…
-
The bug is illustrated here:
https://gist.github.com/Felixyz/5771982
And a repo containing the same code and branches with variations here:
https://github.com/Felixyz/celluloid-redis-bug
- Reading fr…
-
How do you handle a mutex with fibers? There is a library for fibers mutex?
-
It would be nice to get some background on them. Some pros and cons and what are people's experiences are with them. Much like the docker show.
-
Crystal currently has cooperative Fibers running on top of an event loop. This usually happens in a single thread, or in a group of a small number worker threads with `-Dpreview_mt`. Either way, there…
-
docker version 19.03.6
$ git clone https://github.com/ryhanson/lair-docker.git
$ cd lair-docker
$ docker-compose build
$ docker-compose up
lair_lair |
lair_lair | > meteor-dev-bundle@0.0.0 s…
-
Currently, fibers are generally scheduled in a round-robin manner. This means that if a fiber gives up control, it must wait for all concurrent fiber to be scheduled first. However, in some cases, one…