tags:

views:

188

answers:

5

As mentioned briefly in this article:

http://en.wikipedia.org/wiki/Delta_encoding#Delta_encoding_in_HTTP

which is referenced from here:

http://tools.ietf.org/html/rfc3229

I'm currently a CompSci student and would like to try this out, partly for research and partly for fun. Google hasn't returned much in terms of further discussion or research.

A: 

Well, there's some information here.

bmargulies
Well, that's not really an implementation of the RFC; more of a reuse (some would say misuse) of it.
Mark Nottingham
I think the point of all this is that the answer is 'none'.
bmargulies
A: 

AIUI AppliedTheory's DeltaEdge product was an implementation. Not sure what happened to it, though.

Mark Nottingham
A: 

A server side example of Delta Encoding can be found here. It was written specifically for WordPress. The code is written in PHP and assumes Apache is the web server. For testing purposes, I would recommend setting up a copy of WordPress and installing this plugin. It would definitely get you started.

In addition, please remember that Delta encoding in HTTP is not yet a standard. If this is going to be used in an actual project, you may want to consider other alternatives. At least until web servers and/or web browsers begin adopting the protocol. Otherwise, you may need to create your own server side and client side code.

John L Veazey