Sha256: 52d5f116e536a9625d2d4055c551f8c07055ebc247d4fd89c46bf59dd61f3a1c

Contents?: true

Size: 716 Bytes

Versions: 1

Compression:

Stored size: 716 Bytes

Contents

require 'alephant/cache/version'
require 'alephant/logger'
require 'aws-sdk'

module Alephant
  class Cache
    include Logger
    attr_reader :id, :bucket, :path

    def initialize(id, path)
      @id = id
      @path = path

      @bucket = AWS::S3.new.buckets[id]
      logger.info("Cache.initialize: end with id #{id} and path #{path}")
    end

    def clear
      bucket.objects.with_prefix(path).delete_all
      logger.info("Cache.clear: #{path}")
    end

    def put(id, data)
      bucket.objects["#{path}/#{id}"].write(data)
      logger.info("Cache.put: #{path}/#{id}")
    end

    def get(id)
      logger.info("Cache.get: #{path}/#{id}")
      bucket.objects["#{path}/#{id}"].read
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
alephant-cache-0.0.3 lib/alephant/cache.rb