Ruby 中的简单 TCPSocket 服务器出现 HTTP 标头问题

发布于 2024-12-07 12:28:30 字数 819 浏览 6 评论 0原文

我正在对 Ruby 中的一些简单 HTTP 服务器实现进行基准测试(无线程、线程、纤维和 eventmachine),但是这段简单的代码在使用线程时失败了:

#!/usr/bin/env ruby

require 'socket'

server = TCPServer.new("127.0.0.1", 8080)
puts "Listening on 127.0.0.1:8080"
while true
  Thread.new(server.accept) do |client|
    msg = client.readline
    headers = [
      "",
      "HTTP/1.1 200 OK",
      "Date: Fri, 30 Sep 2011 08:11:27 GMT",
      "Server: TCP socket test",
      "Content-Type: text/html; charset=iso-8859-1",
      "Content-Length: #{msg.length}\r\n\r\n"].join("\r\n")

    client.write headers
    client.write ">>> Data sent:\n #{msg}"
    client.close
  end
end

一个简单的curl http://localhost:8080/ 工作正常,但不是直接“HTTP/1.1 200 OK”响应。这是为什么呢?

I'm benchmarking some simple HTTP server implementations in Ruby (no threads, threaded, fibers and eventmachine) but this simple piece of code fails using threads:

#!/usr/bin/env ruby

require 'socket'

server = TCPServer.new("127.0.0.1", 8080)
puts "Listening on 127.0.0.1:8080"
while true
  Thread.new(server.accept) do |client|
    msg = client.readline
    headers = [
      "",
      "HTTP/1.1 200 OK",
      "Date: Fri, 30 Sep 2011 08:11:27 GMT",
      "Server: TCP socket test",
      "Content-Type: text/html; charset=iso-8859-1",
      "Content-Length: #{msg.length}\r\n\r\n"].join("\r\n")

    client.write headers
    client.write ">>> Data sent:\n #{msg}"
    client.close
  end
end

A simple curl http://localhost:8080/ works fine, when the first element in the array is "" or other String, but not the "HTTP/1.1 200 OK" response directly. Why is this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文