Sha256: c0370826c679d7e5dee7930a9e63069e652e4cb41eb2e5d24c646d2a231ac29c

Contents?: true

Size: 1.17 KB

Versions: 6

Compression:

Stored size: 1.17 KB

Contents

= 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.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sleepy-0.1.6 README.rdoc
sleepy-0.1.5 README.rdoc
sleepy-0.1.4 README.rdoc
sleepy-0.1.3 README.rdoc
sleepy-0.1.2 README.rdoc
sleepy-0.1.1 README.rdoc