Guest User

Untitled

a guest
Sep 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. module Dalli
  2. class Client
  3. def perform_with_hash(op, key, *args)
  4. perform_without_hash(op, Digest::SHA1.hexdigest(key), *args)
  5. end
  6. alias_method_chain :perform, :hash
  7. end
  8. end
Add Comment
Please, Sign In to add comment