Sha256: c3cafb3d6156b302769b8e2c7d42faeaddfa1529ce5daf527ec3d823996f5e4f

Contents?: true

Size: 792 Bytes

Versions: 3

Compression:

Stored size: 792 Bytes

Contents

# Adds surrogate key methods to ActiveRecord models
module FastlyRails
  module Mongoid
    module SurrogateKey
      extend ActiveSupport::Concern

      module ClassMethods

        def purge_all
          FastlyRails.client.get_service(service_id).purge_by_key(table_key)
        end

        def table_key
          collection_name
        end

        def service_id
          FastlyRails.service_id
        end
      end

      def record_key
        "#{table_key}/#{id}"
      end

      def table_key
        self.class.table_key
      end

      def purge
        FastlyRails.client.get_service(service_id).purge_by_key(record_key)
      end

      def purge_all
        self.class.purge_all
      end

      def service_id
        self.class.service_id
      end

    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastly-rails-0.1.5 lib/fastly-rails/mongoid/surrogate_key.rb
fastly-rails-0.1.4 lib/fastly-rails/mongoid/surrogate_key.rb
fastly-rails-0.1.3 lib/fastly-rails/mongoid/surrogate_key.rb