Unicorn | Rack | |
---|---|---|
3 | 26 | |
1,418 | 4,978 | |
0.2% | 0.4% | |
5.0 | 8.7 | |
4 months ago | 6 days ago | |
Ruby | Ruby | |
GNU General Public License v3.0 or later | MIT License |
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.
Unicorn
-
Adventures in Garbage Collection: Improving GC Performance in our Massive Monolith (2023)
It's extremely similar to the original OOBGC implementation for Unicorn: https://github.com/defunkt/unicorn/blob/master/lib/unicorn/oob_gc.rb
-
What exactly is a pre-fork web server model?
I want to know what exactly it means when a web server describes itself as a pre-fork web server. I have a few examples such as unicorn for ruby and gunicorn for python.
- We found and fixed a rare race condition in our session handling
Rack
-
Show HN: Dumbo – Hono inspired framework for PHP
I've went through a similar journey, with some PHP in the early days, then a lot of Merb/Rack/RoR experience. Though I'd not say PHP is back. I'd avoid it for new projects as there are --IMHO-- much better languages available for free.
What I really liked from webdevt in Ruby was Rack. https://github.com/rack/rack (gosh I prefer the simplicity of the old logo)
And I found a Rack-like architecture in "http4k" https://www.http4k.org
In a way Kotlin can be looked at as a "typed Ruby". Sure Ruby now has optional types, but I believe it's not something easily bolted on later. The whole lang + stdlib should be built in an idiomatic way. Changing the language a lot later usually creates a mess in the stdlib.
The framework http4k delivers is very similar Hono/Dumbo, but it has a Rack built in as well. Also, http4k is make by functional programming enthusiasts. So it clearly separates logic and data.
Small request: Please make Hono clickable in the README!
-
The Basics of Rack for Ruby
You can find the full, relatively accessible Rack specification on GitHub.
- WASM Is the New CGI
- Como desenvolvi um backend web em Clojure
-
How to Use Sinatra to Build a Ruby Application
Because of its lightweight and Rack-based architecture, Sinatra is great for building APIs, mountable app engines, command-line tools, and simple apps like the one we'll build in this tutorial.
-
Building a Ruby app without any framework
Since you mentioned Sinatra and Rails I assume you're talking about web apps. In that case you want to build a Rack Application. That's where web frameworks' responsibility ends.
-
Ask HN: Release Notes
I'm thinking about building a website that scrapes release notes from sources like https://community.ui.com/releases, https://github.com/rack/rack/blob/main/CHANGELOG.md, https://developer.android.com/about/versions/13/release-notes etc, and cleans them up & formats into the same format so they can be searched a lot easier.
It seems like the best place to start would be for folks who read HN since we refer to these quite a bit day-to-day to figure out what changes in software, apps, etc. Let's open this up with a few questions:
1. Would you find a service like this useful? Why or why not?
2. What release notes would you want to have formatted into the same thing and why?
3. What features or capabilities would you like to see a service like this do? e.g. would you like to select multiple "products/apps/whatever" and see their release notes in one timeline? Side-by-side? etc. etc. etc.
-
Elixir Plugs
In Elixir world, Plug is a bit similar to Rack in Ruby. Official documentation describes Plug as:
- Rack 3 Upgrade Guide
-
Newb here: have you written your own web server? Seeking advice
The spec for Ruby's Rack is another good reference for how a Ruby webserver is expected to work.
What are some alternatives?
Puma - A Ruby/Rack web server built for parallelism
Thin - A very fast & simple Ruby web server
Phusion Passenger - A fast and robust web server and application server for Ruby, Python and Node.js
Iodine - iodine - HTTP / WebSockets Server for Ruby with Pub/Sub support