前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Clojure 学习入门(10)—— httpkit

Clojure 学习入门(10)—— httpkit

作者头像
阳光岛主
发布2019-02-18 15:49:34
8600
发布2019-02-18 15:49:34
举报
文章被收录于专栏:米扑专栏

Http-kit 是主要由Java 和 Clojure开发,为Clojure定制的零依赖的HTTP lib,仅用3000多行代码,实现了高性能 Server,Client,Timer。代码量少,实现简单,对Hacker友好。

在普通的PC上进行性能测试时,http-kit server每秒能处理数万个请求,并能轻松保持数十万并发,每个连接消耗几k内存,并发数仅与内存大小有关,高并发不影响 latency。

http-kit 下载:http-kit

http-kit 官网:http-kit.org

1)HTTP Server:

  1. 高性能, 在普通机器上,每秒处理数万个请求
  2. 高并发支持。采用异步IO + 线程池的方式,在普通机器上,数十万并发
  3. 支持HTTP长连和WebSocket

2)HTTP Client:

  1. keep-alive:极端情况下,keep-alive可提高一倍性能
  2. 异步IO + 线程池
  3. API 友好

2.0.0 版本修改纪录:

  1. 增加了高性能Timer
  2. 重新设计了client的API,支持同步/异步调用,两者API几乎一样,方便切换
  3. Client实现了TCP链路复用(keep-alive),对服务端应用来说,可提高不少性能
  4. 重新设计,统一了WebSocket和HTTP长连/Streaming 的API,可使对不支持WebSocket的客户端,轻松降级到HTTP长连。
  5. WebSocket支持收发二进制帧

http-kit 力争做到API友好,性能强悍,实现简单,文档完善。

示例1:

代码语言:javascript
复制
(ns myClojure.syntax.httpkit2
  (:use org.httpkit.server))

(defn app [req]
  {:status  200
   :headers {"Content-Type" "text/html"}
   :body    "hello ithomer.net"})

(run-server app {:ip "172.27.22.21" :port 8888 :thread 10})
(println "look at: http://172.27.22.21:8888")

控制台输出:

look at: http://172.27.22.21:8888        # 指定了IP地址后,访问 http://localhost:8888 将访问不到

访问地址:http://172.27.22.21:8888

示例 2:

代码:

代码语言:javascript
复制
; clojure connect to mysql
; ithomer.net
; 2013.12.10

(ns myClojure.syntax.httpkit3
  (:use [compojure.route :only [files not-found]]
        [compojure.handler :only [site]]
        [compojure.core :only [defroutes GET POST DELETE ANY context]]
        [org.httpkit.server])
  (:require [compojure.route :as route]))

(defn show-landing-page [req] ;; ordinary clojure function, accepts a request map, returns a response map
  ;; return landing page's html string. possible template library:
  ;; mustache (https://github.com/shenfeng/mustache.clj, https://github.com/fhd/clostache...)
  ;; enlive (https://github.com/cgrand/enlive)
  ;; hiccup(https://github.com/weavejester/hiccup)
    (println "<h1>Hello World</h1>")
  )
 
(defn update-userinfo [req]          ;; ordinary clojure function
  (let [user-id (-> req :params :id)    ; param from uri
        password (-> req :params :password)] ; form param
       (println user-id password)
    ))

(defn get-user-by-id [req]          ;; ordinary clojure function
  (let [user-id (-> req :params :id)    ; param from uri
        password (-> req :params :password)] ; form param
       (println user-id password)
    )
  )

(defroutes all-routes
 (GET "/" [] show-landing-page)
  (context "/user/:id" []
           (GET / [] get-user-by-id)
           (POST / [] update-userinfo))
  (route/not-found "<p>Page not found.</p>"))    ;; all other, return 404

(run-server (site #'all-routes) {:port 8888})

运行后,访问网址: http://172.27.22.21:8888

控制台打印输出:

<h1>Hello World</h1>

参考推荐:

http-kit server(官方)

compojure(github)

http-kit做高性能 HTTP 反向代理

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2013年12月23日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档