Sha256: 08f54565e5e22140901a93b3ef72b88088b38fac4919efe113d9f8f802dc73f6

Contents?: true

Size: 1.44 KB

Versions: 2

Compression:

Stored size: 1.44 KB

Contents

module Lacquer
  module CacheUtils
    def self.included(base)
      base.class_eval do
        attr_reader :cache_ttl

        before_filter :set_default_cache_ttl
        after_filter :send_cache_control_headers
      end
    end

    # Instance variable for the action ttl.
    def set_cache_ttl(ttl)
      @cache_ttl = ttl
    end

    # Called as a before filter to set default ttl
    # for the entire application.
    def set_default_cache_ttl
      set_cache_ttl(Lacquer.configuration.default_ttl)
    end

    # Sends url.purge command to varnish to clear cache.
    #
    # clear_cache_for(root_path, blog_posts_path, '/other/content/*')
    def clear_cache_for(*paths)
      paths.each do |path|
        case Lacquer.configuration.job_backend
        when :delayed_job
          require 'lacquer/delayed_job_job'
          Delayed::Job.enqueue(Lacquer::DelayedJobJob.new('url.purge ' << path))
        when :resque
          require 'lacquer/resque_job'
          Resque.enqueue(Lacquer::ResqueJob, 'url.purge ' << path)
        when :none
          Varnish.new.purge('url.purge ' << path)
        end
      end
    end
    
    # Sends cache control headers with page.
    # These are the headers that varnish responds to
    # to set cache properly.
    def send_cache_control_headers
      if Lacquer.configuration.enable_cache && @cache_ttl && @cache_ttl != 0
        expires_in(@cache_ttl, :public => true, :private => false)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
lacquer-0.3.0 lib/lacquer/cache_utils.rb
posterous-lacquer-0.2.5 lib/lacquer/cache_utils.rb