request_store-fibers VS fiber_hook

Compare request_store-fibers vs fiber_hook and see what are their differences.

request_store-fibers

Lets you use `RequestStore` with a fiber-based server. (by BMorearty)

fiber_hook

Lets you hook into `Fiber.new` and `Fiber.resume` (by BMorearty)
Our great sponsors
  • PopRuby - Clothing and Accessories for Ruby Developers
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
request_store-fibers fiber_hook
1 1
5 2
- -
0.0 1.8
over 2 years ago over 2 years ago
Ruby Ruby
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

request_store-fibers

Posts with mentions or reviews of request_store-fibers. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-22.
  • Using RequestStore with asynchronous I/O in Rails apps
    4 projects | dev.to | 22 Nov 2021
    To fix this I wrote a new request_store-fibers gem that detects whenever a new fiber is created by hooking into Fiber.new. Before the fiber is executed, I copy the current request_store data into a variable. Then as soon as the fiber is resumed the very first time, I copy that data into the fiber's request_store.

fiber_hook

Posts with mentions or reviews of fiber_hook. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-22.
  • Using RequestStore with asynchronous I/O in Rails apps
    4 projects | dev.to | 22 Nov 2021
    request_store-fibers is actually a thin layer on top of another more generic gem I wrote, fiber_hook, which does all the magic. It lets you hook into fiber creation and do anything you want right after any fiber is created and before it executes.

What are some alternatives?

When comparing request_store-fibers and fiber_hook you can also consider the following projects:

Async Ruby - An awesome asynchronous event-driven reactor for Ruby.

falcon - A high-performance web server for Ruby, supporting HTTP/1, HTTP/2 and TLS.