实现了 HTTP 的缓存:Faraday Http Cache 经验

Faraday Http Cache 是一个 Faraday 的扩展,实现了 HTTP 的缓存。通过检查过期时间来验证已存储的响应信息。 使用方法: client = Faraday.new do |builder|

efbb 2015-05-07   35093   0

Clojure的HTTP客户端包 clj-http 经验

clj-http 是一个新的 Clojure HTTP 客户端开发包,主要特点是设计简单、可靠、可扩展和可测试。 Clojure 是一种LISP风格的语言,运行在JVM上。Clojure的一大

fmms 2012-01-26   25316   0

HTTP 文件服务器:http-watcher 经验

一个用GO开发的 HTTP 文件服务器,特殊之处在于它同时会监控文件系统改动,当发现文件变化后,自动刷新浏览器。可帮助前端开发。 一般的开发流程:修改代码 =》 切换到浏览器=》刷新看效果(循环)

jopen 2013-01-08   17667   0

异步 HTTP 客户端:async-http-php 经验

async-http-php 是个异步 HTTP 客户端,机遇 crul_mulit*,系统很简单,速度非常快。 如果你想使用 ssl 或者其他来请求一个网站,你可以实现一个 task 类和 TaskInterface

jopen 2015-09-26   12191   0

Node.js的HTTP代理:node-http-proxy 经验

node-http-proxy 是一个用于Node.js的HTTP可编程代理库,支持 websockets。它是适用于实现例如代理服务器和负载均衡这样的组件。 var http = require('http')

jopen 2014-06-16   218170   0

深入Android通过Apache HTTP访问HTTP资源 经验

getStatusLine () 得到一个StatusLine(也就是HTTP协议中的状态行我们知道HTPP状态行由三部分组成:HTTP协议版本,服务器发回的响应状态代码,状态码的文本描述)接口的实例对象

fmms 2012-02-17   57736   0

HTTP 协议解析库:fast-http 经验

这是一个快速的 HTTP request/response 协议解析器,用于 Common Lisp开发中。 大部分移植自 C 语言版本的 http-parser . 具体有多快请看下图:

jopen 2014-10-30   117640   0

MySQL数据库的HTTP接口:MySQL HTTP API 经验

HTTP服务器提供了一个HTTP接口直接可以访问到MySQL数据库。允许客户端通过Http来与MySQL数据库交互。 Running/Installing It's easy to run the

pnxx 2015-09-27   13093   0

Java HTTP客户端 http4j 经验

http4j是一个开源的Java HTTP客户端,主要是源自对工作中的一个项目设计的不满和扩展Apache HttpComponent比较麻烦。 不同于Apache HttpComponent (HttpClient)之处在于:

webphp 2012-01-08   41167   0

高性能的HTTP服务器:Bauk HTTP server 经验

Bauk HTTP server 是一个linux/Unix下的高性能的HTTP服务器,完全兼容 HTTP/1.1,支持虚拟主机、别名,主机匹配、带宽配额、HTTP认证、文件缓存、CGI,完全支持 Perl、PHP、Python

jopen 2013-03-15   15585   0

对OkHttp进行封装,实现了只查询缓存,网络请求失败自动查询本地缓存等功能 经验

原文 http://jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/1208/3760.html 就我个人的使用感觉而言,OkHttp算是用得最顺手的一个网络请求框架了,提供了拦截器

jopen 2015-12-10   70982   0
P9

  常见的http错误 文档

 HTTP 1xx - 信息提示 这些状态代码表示临时的响应。客户端在收到常规响应之前,应准备接收一个或多个 1xx 响应。 ? 100 - 继续。 ? 101 - 切换协议。 2xx - 成功 这

molly8124 2013-01-29   2687   0
P

HTTP Developer's Handbook 文档

The largest group with an unsatisfied demand for a good book on HTTP is the worldwide group of Web developers. A good book on HTTP can help new and old Web developers alike, as a thorough understanding of underlying protocols can remove the dependencies on specific tool sets and help people create and maintain better Web applications as well as adapt to technologies. HTTP has become an essential topic because the Web's importance has created an army of people creatively leveraging the Web for their specific needs. By making standards information more available to the common developer, standards compliance becomes more widespread and common, something that the industry needs. Developers will buy this book because they want to advance their expertise, and because there is very little documentation available. This book will easily become the standard reference for the Internet's most dominant protocol.

qy2664257 2013-04-06   4548   0

HTTP Referer 二三事 资讯

什么是HTTP Referer 简言之,HTTP Referer是header的一部分,当浏览器向web服务器发送请求的时候,一般会带上Referer,告诉服务器我是从哪个页面链接过来的,服务器籍

jopen 2015-10-21   7982   0
HTTP  

go语言的http 经验

http服务 引子,http的hello world 如果要搜索“go http helloworld”的话,多半会搜索到以下代码 package main import ( "io" "net/http"

jopen 2013-08-09   69580   0

Android Http库:Netroid 经验

Volley 实现的Android Http库。提供执行网络请求、缓存返回结果、批量图片加载、大文件断点下载的常见Http交互功能。致力于避免每个项目重复开发基础Http功能,实现显著地缩短开发周期的愿景。

jopen 2014-06-15   40226   0

Async Http Client 经验

AsyncHttpClient 这个类库可以在Java应用程序中执行HTTP 请求并异步处理HTTP响应。用法非常简单。 项目主页: http://www.open-open.com/lib/view/home/1326030240937

webphp 2012-01-08   20911   0

基于HTTP的消息队列 经验

之前介绍过基于TCP的消息队列,这里在写个基于HTTP的消息队列。代码仅仅演示整个程序员的框架。不会去考虑性能和实用性。简单起见,我们只考虑固定URI的情况。当然,对于不同URI去存取不同的消息队列也是意见很简单的事情。

jopen 2014-01-27   27795   0

Swift HTTP 库:STNetWork 经验

使用例子 //普通的GET 请求 @IBAction func sendGetHttp(sender: UIButton) { var url:String = "http://lcepy.github

jopen 2015-06-17   21798   0

http staus汇总 问答

常见HTTP状态码 200 OK 301 Moved Permanently 302 Found 304 Not Modified 307 Temporary Redirect 400 Bad Request

pleo 2013-06-23   10300   0
数据库   C/C++   Go   HTML   HTTP  
1 2 3 4 5 6 7 8 9 10