Skip to content

Instantly share code, notes, and snippets.

@costajob
costajob / http_cluster.cr
Last active November 24, 2022 09:09
Barebones HTTP server cluster in Crystal lang
require "http/server"
module HTTPCluster
struct Worker
def initialize(@pid : Int32, @master : Int32)
end
def call(port)
yield(port)
end