Tag Archives: cache

How restful results are handled in Restfulie with Rails

Posted on 14. Jun, 2010 by Guilherme Silveira.

0

Using a backport from a Rails 3, Restfulie responders enhance your response without you even noticing. Creating First, the new 201 support with correct headers in one cute line, supported by the created responder: @item = Item.create(params[:item]) respond_with @item, :status => :created Rendering Rendering a resource using a hypermedia based representation: @item = Item.find(params[:id]) respond_with [...]

Continue Reading

Scaling through rest: why rest clients require cache support

Posted on 26. Jan, 2010 by guilhermesilveira.

2

It’s common to find developers struggling with their clients browser’s cache and proxies in order to get their application running as expected: some of them actually view cache options as a bad thing. Actually http caches presents a few advantages, being the two most important amongst them all the ability to serve more clients at [...]

Continue Reading

Scaling through rest: why rest clients require cache support

Posted on 24. Jan, 2010 by guilhermesilveira.

0

It’s common to find developers struggling with their clients browser’s cache and proxies in order to get their application running as expected: some of them actually view cache options as a bad thing. Actually http caches presents a few advantages, being the two most important amongst them all the ability to serve more clients at [...]

Continue Reading