Created
March 20, 2020 20:13
-
-
Save havenwood/6ded11a880e47bd1d587d04588f4f6b9 to your computer and use it in GitHub Desktop.
Another example for xco on #ruby IRC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'tuple_space' | |
class Cache | |
def initialize | |
@memory = TupleSpace.new(reaper_period_in_secs: 10, expires_in_secs: 60) | |
end | |
def get(request) | |
@memory[request] | |
end | |
def set(request, response) | |
@memory[request] = response | |
end | |
end | |
Typhoeus::Config.cache = Cache.new | |
Typhoeus.get("www.example.com").cached? | |
#=> false | |
Typhoeus.get("www.example.com").cached? | |
#=> true | |
## | |
# Wait 60-70 seconds... | |
Typhoeus.get("www.example.com").cached? | |
#=> false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rinda/tuplespace' | |
class TupleSpace < Rinda::TupleSpace | |
# 600 seconds is ten minutes and 86,400 seconds is 3 hours | |
def initialize reaper_period_in_secs: 600, expires_in_secs: 10_800 | |
@expires_in_secs = expires_in_secs | |
super reaper_period_in_secs | |
end | |
def []= key, value | |
take [key, nil], true | |
rescue Rinda::RequestExpiredError | |
nil | |
ensure | |
write [key, value], @expires_in_secs | |
end | |
def [] key | |
read([key, nil], true).last | |
rescue Rinda::RequestExpiredError | |
nil | |
end | |
def delete key | |
take([key, nil], true).last | |
rescue Rinda::RequestExpiredError | |
nil | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment