摘要:
安装过程中一直报错:EnvironmentError: mysql_config not found最终下面的方式解决:58down voteaccepted+200Ok, well, first of all, let me check if I am on the same page as yo... 阅读全文
摘要:
Rocket Server 启动一个线程监听客户端的连接,收到连接将连接放置到队列中。线程池中的Worker会以这个连接进行初始化。Rocket中Worker的基类是: class Worker(Thread): """The Worker class is a base class responsible for receiving connections and (a subc... 阅读全文
摘要:
Rocket是一个轻量级,多线程,符合WSGI规范的web框架。Rocket使用一个线程监听连接,接收到连接之后放到Queue中,有worker线程进行处理。Rocket含有以下属性:method- A string value indicating the type of Worker to us... 阅读全文