Created
          June 20, 2011 16:23 
        
      - 
      
- 
        Save adamhunter/1035927 to your computer and use it in GitHub Desktop. 
    basic read write cache for riak
  
        
  
    
      This file contains hidden or 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 'riak' | |
| class RiakCache | |
| def initialize | |
| @client = Riak::Client.new(:pb_port => 8081, :protocol => :pbc) | |
| @bucket = @client.bucket("riakcache") | |
| end | |
| def read(key) | |
| @object = @bucket.get(key) | |
| @object.data | |
| end | |
| def write(key, value) | |
| @object = @bucket.get_or_new(key) | |
| @object.content_type = 'application/x-ruby-marshal' | |
| @object.data = value | |
| @object.store | |
| end | |
| end | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment