SPDY“Hello world”会是什么样子?

时间:2011-06-06 14:31:20

标签: optimization spdy

我刚刚完成了浏览SPDY white paper,现在我有兴趣尝试一下。我理解Google is serving content over SSL to Chrome using SPDY

在SPDY上设置和提供基本“Hello world”HTML页面的最简单方法是什么?

4 个答案:

答案 0 :(得分:3)

运行现有的spdy服务器,例如:

https://github.com/indutny/node-spdy

答案 1 :(得分:2)

似乎最快捷,最简单的方法就是遵循instructions located here

答案 2 :(得分:1)

我在C中编写了spdylay SPDY库,最近添加了Python包装器python-spdylay。 它需要Python 3.3.0(在撰写本文时为RC1), 但是您可以像这样编写简单的SPDY服务器:

#!/usr/bin/env python
import spdylay

# private key file
KEY_FILE='server.key'
# certificate file
CERT_FILE='server.crt'

class MySPDYRequestHandler(spdylay.BaseSPDYRequestHandler):

    def do_GET(self):
        self.send_response(200)
        self.send_header('content-type', 'text/html; charset=UTF-8')

        content = '''\
<html><head><title>SPDY</title></head><body><h1>Hello World</h1>
</body></html>'''.encode('UTF-8')

        self.wfile.write(content)

if __name__ == "__main__":
    HOST, PORT = "localhost", 3000

    server = spdylay.ThreadedSPDYServer((HOST, PORT),
                                        MySPDYRequestHandler,
                                        cert_file=CERT_FILE,
                                        key_file=KEY_FILE)
    server.start()

答案 3 :(得分:0)

SPDY的目的是对您的Web应用程序完全透明。您不需要编写代码来使用SPDY,您只需要使用支持它的Web服务器。

如果您有一个java Web应用程序,那么您可以使用Jetty SPDY启用它。 3个简单步骤:在启动路径中添加jar以启用NPN,为服务器创建SSL证书,将SPDY配置为连接器类型。见http://wiki.eclipse.org/Jetty/Feature/SPDY

这在Jetty-9中会更容易