Home > sleepy

sleepy

Sleepy is a project mainly written in Ruby, based on the MIT license.

Memcached API calls using Weary

= sleepy

Tired of API requests failing or taking a long time on your mashup?

Sleepy uses memcached to cache API responses for a set time to reduce load on external services, and falls back to the last working response for a request on timeout or failure.

Based on: http://github.com/mwunsch/weary

Example:

class TwitterUser < Weary::Base

domain "http://twitter.com/users/"

get "show" do |resource|
    resource.with = [:id, :user_id, :screen_name]
end

end

user = TwitterUser.new me = user.show(:id => "markwunsch").perform_sleepily puts me["name"]

(turn off your internet connection)

me = user.show(:id => "markwunsch").perform_sleepily puts me["name"]

Description goes here.

== Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

== Copyright

Copyright (c) 2010 steflewandowski. See LICENSE for details.

Previous:wireTest