aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/memory_store.rb
blob: f3e4b8c13bec08ae46c376762f1162cbe79df3c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module ActiveSupport
  module Cache
    class MemoryStore < Store
      def initialize
        @data = {}
        @guard = Monitor.new
      end

      def fetch(key, options = {})
        @guard.synchronize do
          super
        end
      end

      def read(name, options = nil)
        @guard.synchronize do
          super
          @data[name]
        end
      end

      def write(name, value, options = nil)
        @guard.synchronize do
          super
          @data[name] = value.freeze
        end
      end

      def delete(name, options = nil)
        @guard.synchronize do
          @data.delete(name)
        end
      end

      def delete_matched(matcher, options = nil)
        @guard.synchronize do
          @data.delete_if { |k,v| k =~ matcher }
        end
      end

      def exist?(name,options = nil)
        @guard.synchronize do
          @data.has_key?(name)
        end
      end

      def increment(key, amount = 1)
        @guard.synchronize do
          super
        end
      end

      def decrement(key, amount = 1)
        @guard.synchronize do
          super
        end
      end

      def clear
        @guard.synchronize do
          @data.clear
        end
      end
    end
  end
end